Quote:
Originally Posted by DiapDealer
And therein lies the problem. If you knew more about regex, you would already know why there's not going to be any checkbox to make a regexp case-insensitive. (?i) makes a regular expression case-insensitive.
Not going to happen. I'm not going to waste time trying to make regex more "intuitive" for people who don't know regex.
As already mentioned, you already have complete and independent control over case sensitivity in both normal and regex modes. You don't need features added to Sigil. You just need to become more fluent with regex.
https://www.regular-expressions.info/
|
Ok. It's just I uesd to use regex in javascript or python, which have a flag argument which can control case sensitivity, DotAll or other things. So I think case sensitivity is a opinion like DotAll and I don't know to use (?i).
And now I learn it. Thank you.