PopcornCoder wrote:
> How do I get the code below to work?
>
> <cfset disco = "abis">
> <cfif #disco# CONTAINS
"a">Yes<cfelseif>No</cfif>
> <cfif #disco# CONTAINS
"l">Yes<cfelseif>No</cfif>
<cfif find(disco,'a')>YES<cfelse>NO</cfif>
OR (depending of if you care about case or not)
<cfif
findNoCase(disco,'1')>YES<cfelse>NO</cfif>