Option toggling
Option toggling within the pattern is now fully supported. For example:
/ab(?i)c/.examples #=> ["abc", "abC"]
/a(?-i:bc)/i.examples #=> ["abc", "Abc"]
Also added support for comment groups, such as /foo(?#comment)bar/.examples
Option toggling within the pattern is now fully supported. For example:
/ab(?i)c/.examples #=> ["abc", "abC"]
/a(?-i:bc)/i.examples #=> ["abc", "Abc"]
Also added support for comment groups, such as /foo(?#comment)bar/.examples