I don't want strings with newlines treated as numbers.
This should be considered a string
<cfscript>
notes = "3
";
</cfscript>
The newline is preserved
<cfoutput>
<pre>|#notes#|</pre>
Number: #isNumeric(notes)# <!--- returns YES --->
<pre>|#replacelist(notes, chr(10) , "\n") #|</pre>
Number: #isNumeric(notes)# <!--- returns YES
</cfoutput>