Re: How does one make a regex case-insensitive?
Posted by
Hugo <Nabble> on
Nov 16, 2011; 4:31pm
URL: https://support.nabble.com/How-does-one-make-a-regex-case-insensitive-tp6999228p7000956.html
We just realized you can start the regex with "(?i)" to turn on case insensitive matching. Example:
(?i)a|b|c
So there is no need for the extra parameter mentioned in
my other reply.