Whatever message this page gives is out now! Go check it out!
IsDate(string)Parameter | Description |
string | A string or a variable that contains one. |
<cfscript>
writeOutput("True, if string can be converted to a date/time value; False, otherwise. ColdFusion converts the Boolean return value to its string equivalent, Yes or No" & "<br>" & "<br>")
date = IsDate(now());
writeOutput("Can string be converted to a date/time value : " & date & "<br>");
string = IsDate("12/12/2018");
writeOutput("Can 12/12/2018 be converted to a date/time value: " & string & "<br>");
string = IsDate("Hello_world");
writeOutput("Can Hello_world be converted to a date/time value: " & string);
</cfscript>