how to validate UUID or transaction number format in ColdFusion
Below code can be used to validate a UUID format or a transaction number format in ColdFusion
<cfset test=ReMatchNoCase('[a-z0-9{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}',value) />
Comments
Post a Comment