Comma delimited list
Hi,
In the following list, how can I keep the word Social, Behavioral, and Economic Sciences as one word instead of
Social
Behavioral
and Economic Sciences
<cfloop list="Biological Sciences, Social, Behavioral, and Economic Sciences" index="i" delimiters=",">
<cfoutput> #i# <br /></cfoutput>
</cfloop>
The list should look like:
Biological Sciences
Social, Behavioral, and Economic Sciences
Thanks!
