My speculation for the first one is: As the entire regex is optional (*), it matches the (implied) null string at the begining of the bound string, so the match is true and the outer capture is that null string, hence $1=''. However, the inner capture cannot be satisfied from the outer capture, so it is undef.

For the second: Whilst the outer capture group is optional, it contains non-optional inner groupings, therefore an attempt must be made to satisfy those inner grouping before the truth of the match can be determined. As the outer capture is an or condition, and the first character in the string matches the left-most element of that or, the match is made and no further attempt is needed. At this point, the left-most inner capture group has matched 'a' so $2='a', no attempt has been made to match the right-most inner capture group, so $3=undef. The outer capture group is whatever matched inside it, so $1='a' as well.

And I would never have guessed anywhere close until I ran the code.


Okay you lot, get your wings on the left, halos on the right. It's one size fits all, and "No!", you can't have a different color.
Pick up your cloud down the end and "Yes" if you get allocated a grey one they are a bit damp under foot, but someone has to get them.
Get used to the wings fast cos its an 8 hour day...unless the Govenor calls for a cyclone or hurricane, in which case 16 hour shifts are mandatory.
Just be grateful that you arrived just as the tornado season finished. Them buggers are real work.


In reply to Re: Interesting Regex Behavior by BrowserUk
in thread Interesting Regex Behavior by japhy

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.