They're the same as the x (extended space-insensitive), i (case insensitive), s (single line, allow . to match \n.), and m (multi line, allow ^ and $ to match around \n) modifiers you can put on the end of a regex m// match.

When you save a modified regex using quote-regex (which Regex::Assemble uses internally), like this $regex = qr/foo/ix, these flags need to be set within the $regex, particularly because you might well incorporate it into a larger quoted regex at some later point, like this: $fwibble = qr/$regex|something_else/. The flags are only in operation for the first part of this new regex, but not for something_else.

The flags ahead of the dash are the ones in operation within the scope of the enclosing parentheses. So (?-xism:foo) means that none of the flags are in operation when trying to match 'foo'. (?misx:foo) would mean all of them are in operation, and (?ix-sm:foo) would mean only i and x were.


In reply to Re: Explain output produced by Regexp::Assemble by polypompholyx
in thread Explain output produced by Regexp::Assemble by swift

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.