Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display Format Command

Status
Not open for further replies.

Auggz

Programmer
Dec 22, 2005
12
0
0
US
Which command can I add to tell an @implode command to disply a given field in the same format the field was entered. I am displaying a description field in a web form using @implode command but its wrapping up the text and loosing all the paragraphs in the field and wrapping them all up as one long paragraph.

Heres my computed value

@Implode(desc)
 
You should specify the wanted separator; Default separators are comma, semicolon, space, and used in this context it will trigger on all of them.

If you instead use @Implode(desc; ",") it should only take the comma. 'Any' other chars can also be used, popular versions are '#' and '~'

Try it :)

Brgds,

TrooDOS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top