How to use modifier in regular expression (?...) construct
Posted: 30 Aug 2024, 12:32
The documentation says
I'm struggling to figure out what exactly this construct looks like. I'd like to embed case insensitive into an "Included URL" regex. I've tried a few things such as (?i...), (?/i...), (?...)/i, (?.../i) but none of them seem to work. An example would be helpful in the documentation.Modifiers can be embedded within the Regular Expression itself using the (?...) construct.