Whatever message this page gives is out now! Go check it out!
IsNumeric(string)Parameter | Description |
string | A string or a variable that contains one. |
<cfscript>
string = "hello world";
result = IsNumeric(string);
output = IIF(result eq 1, DE(true),DE(false));
writeoutput(output);
</cfscript>