meriken / merikens-tripcode-engine-v3

"Meriken's Tripcode Engine" is a cross-platform custom tripcode generator.
GNU General Public License v3.0
115 stars 18 forks source link

Can't search case-insensitive with (?-i) #9

Open VaelVictus opened 5 years ago

VaelVictus commented 5 years ago

(?-i)vaely gives the error: There is an invalid character in a target pattern.

Is this not the best way to search for a case-insensitive term?

ghost commented 4 years ago

Ordinarily it would be (?i) to make it case insensitive (and (?-i) only if you need to make it case sensitive again partway through)

Unfortunately the regex parser this program uses doesn't seem to support it.

Best workaround I've found is to do like [Yy][Ss][Aa] for case-insensitive ysa