Is there a opposite operator option for the Listcontains function in coldfusion? I need to check to make a sure a value does not exist in a string but combine this with another operator.
Sort of like this:
<cfif checkstring EQ 1 and does not contain listcontains(idcheck,"id1") >
<cfif checkstring eq 1 and not listcontains( idcheck, 'id1' )>or in cfscript
if ( checkstring == 1 && !listcontains( idcheck, 'id1' ) )