Whatever message this page gives is out now! Go check it out!
StringSort(string inputString)Parameter | Description |
inputString | (Required) The string to sort. |
<cfscript>
myCities="San Francisco";
writeOutput(StringSort(myCities));
</cfscript><cfscript>
cityArray = "LONDON";
sortedVal= StringSort(cityArray);
writeoutput(sortedVal)
</cfscript>