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