Quoth ben@morrow.me.uk (Ben Morrow): > Quoth demerphq@gmail.com (demerphq): > > > What is the difference between /(?~i:foo)/ and /(?i)foo/ > > Nothing. However, > > "FOO" !~ /(?~s:foo)/i > > but > > "FOO" =~ /(?s:foo)/i Sorry, I meant "FOO" =~ /(?s)foo/i of course. The two existing syntaxes both inherit any unspecified modifiers from the outside, which is what we're trying to avoid. BenThread Previous | Thread Next