View Single Post
Old 02-29-2020, 09:55 AM   #7
The_book
Zealot
The_book began at the beginning.
 
Posts: 100
Karma: 10
Join Date: Aug 2019
Device: none
Quote:
Originally Posted by DiapDealer View Post
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.
The_book is offline   Reply With Quote