IsDate (string) DescriptionChecks to see if a string can be converted to a date/time value and then returns true or false. Example<cfset exampleValue = "12/13/75"> <cfif IsDate(exampleValue) > <cfoutput>#DE(exampleValue)#</cfoutput> is a valid date. <cfelse> <cfoutput>#DE(exampleValue)#</cfoutput> is not a valid date. </cfif> |