Whatever message this page gives is out now! Go check it out!
Val(value)Parameter | Description |
value | A string or a variable that contains one |
<cfscript>
val1="234A56?7"
writeOutput(Val(val1) & "<br/>")
val2="234'5678'9?'"
writeOutput(Val(val2) & "<br/>")
val3="BG234"
writeOutput(Val(val3) & "<br/>")
val4="0"
writeOutput(Val(val4) & "<br/>")
</cfscript>