I have a data string that I need to display with commas that are not separated by spaces. When I go to display these values, the string doesn't wrap because of the lack of spaces and it's doing nasty things to may layout.
This is a simple event listing (see below).
I've tried to fumble my way through this using the REReplace function ... here's what I've tried:
Original:
Failed hack attempt:
Any help is appreciated.
This is a simple event listing (see below).
Code:
6-9 Jul
Event 1
Location 1
Staffer1,Staffer2,Staffer3,Staffer4
I've tried to fumble my way through this using the REReplace function ... here's what I've tried:
Original:
Code:
<TD width="348"
#dates#<BR>
event#, #city#, #state#<BR>
#staff#
</TD>
Failed hack attempt:
Code:
<TD width="348"
#dates#<BR>
event#, #city#, #state#<BR>
#REReplace("staff", ",", ", ")#
</TD>
Any help is appreciated.