It's sometimes useful to know where in a string a match occurs.

c:\@Work\Perl\monks>perl -wMstrict -le "my $s = 'kkkaaabc'; for my $rx ( 'k?a?', 'k*a?', 'k?a+', 'k+a+', 'k?a*', 'k*a*', 'a*', ) { print qq{'$s'}; ;; $s =~ m{ ($rx) }xms; ;; if (not defined $1) { print 'no match'; next; } ;; print ' ', ' ' x $-[1], '^' x ($+[1] - $-[1]), qq{ /$rx/ matched '$1' at offset $-[1]}; } " 'kkkaaabc' ^ /k?a?/ matched 'k' at offset 0 'kkkaaabc' ^^^^ /k*a?/ matched 'kkka' at offset 0 'kkkaaabc' ^^^^ /k?a+/ matched 'kaaa' at offset 2 'kkkaaabc' ^^^^^^ /k+a+/ matched 'kkkaaa' at offset 0 'kkkaaabc' ^ /k?a*/ matched 'k' at offset 0 'kkkaaabc' ^^^^^^ /k*a*/ matched 'kkkaaa' at offset 0 'kkkaaabc' /a*/ matched '' at offset 0
Note in particular the  /a*/ regex which I added at the end. This matches the empty string at offset 0 even though a perfectly good  'aaa' sequence is available further on. Engrave "Leftmost Longest" on a prayer wheel and keep it ever spinning in your mind.

Regexes are the most counterintuitive thing I've encountered in the realm of programming.

Updates:

  1. The initialization of capture variables (e.g., $1) to undef on regex recompilation is apparently only available from Perl version 5.10 onward. The code
    my $match = $s =~ m{ ($rx) }xms; if (not $match) { print 'no match'; next; }
    is more portable among different Perl versions.
  2. Also check out davido's Perl Regular Expression Tester


Give a man a fish:  <%-{-{-{-<


In reply to Re: basic question: regular expression by AnomalousMonk
in thread basic question: regular expression by Anonymous Monk

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.