6 lines
143 B
Text
6 lines
143 B
Text
|
|
<cfscript>
|
||
|
|
wordList = "Hello,How,Are,You,Today";
|
||
|
|
splitList = replace( wordList, ",", ".", "all" );
|
||
|
|
writeOutput( splitList );
|
||
|
|
</cfscript>
|