Question
Regular expression
Following codes output differ why? I am searching for string "JA or Ja; or jA; o etc" But its find string when I use letter "x" in string. In first string I used letter "x" and in second line code I haven;t used letter "x" . Basically it is considering letter "x" wild matching
<cfset IndexOfOccurrence=REFind("[J|j;|&##x4A;|&##x6A;][A|a;|&##x41;|&##x61;]", "mamjsdjzdahggjxac;")>
<cfset IndexOfOccurrence3=REFind("[J|j;|&##x4A;|&##x6A;][A|a;|&##x41;|&##x61;]", "mamjsdjzdahggjqac;")>
I am expecting same output for above code? What change I should do to fix this?
Thanks

