I just discovered your feature to test regular expressions in the query builder – that’s really great!
I wanted to clarify some issue though with case sensitivity though and the i flag.
- my tests seem to suggest that regex are case insensitive while your documentation makes it clear that regex are case sensitive.
e.g. I test the regular expression z{3,10} expressions like ZZz will get a positive test result.
when I try the regex (?i)z{3,100} from your examples, nothing seems to get matched.
Thus my questions:
- Do flags not work in the test?
- Are the regex case sensitive?
- Is case matching working properly in the test?
- Or am I working from some other false assumption?
Thanks a lot.