is it possible to use modifiers on regex? Like:
m/some.*title/i ==> tag...
is it possible to use modifiers on regex? Like:
m/some.*title/i ==> tag...
Yes: arbtt
uses perl-compatible regexes, and they allow you to set modifiers inside the pattern:
m/(?i)some.*title/ ==> tag...
See https://www.pcre.org/original/doc/html/pcrepattern.html#SEC13 for more details.