I am trying to debug my understanding of the matching operator.
When invoked with the g modifier in list context, I thought that
the return value is a list of all possible matches. If capturing
parentheses are used, then the list is the set of all $1, $2, etc
captured.
The following bit of Perl:
#!/bin/perl -w
$" = '-';
$string = "a:b c:d";
@list = ($string =~ m/(\w):(\w)/g);
print "list=@list\n";
$string = "a:b:c";
@list = ($string =~ m/(\w):(\w)/g);
print "list=@list\n";
prints out:
list=a-b-c-d
list=a-b
I understand the first line of output, but it seems to me that
the second line of output should really be:
list=a-b-b-c
This is because the (\w):(\w) can match a:b and also b:c. It appears
that the regex engine finds the first match of a:b and then starts
the next matching attempt after the b, in which case it cannot find the
b:c match. I expected the next matching attempt to start after the a,
so that the b:c match would also be found.
I have read the Camel book chapter on this & the perlop man page,
but they don't really have a lot to say about this...
grain_of_sand
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.