Regex case
Regex case
I want to compose the filter that would match the string [a-z]Ad that matches case, however, when i try [a-z] it seems to recognize this as [a-zA-Z], matching the upper case as well, as in BAd. I want it only to match bAd. How can I do this? Thanks
I think the filter has to look like this:
Code: Select all
/[a-z]/$match-case