Okay, this one has got me totally baffled. Basically, I have a regular expression that is slurping up more data than it rightly should. I really can't see anything I'm doing wrong and the results are totally unexpected, though the problem seems to be related to having \\? in the RE. It's hard to describe so I'll just go straight into the code...

Using this data:

$_ = 'foo\$bar';

This tokenizing code snippet:

{ if(m/\G(\\?\$\w+)/gc or m/\G(\w+)/gc) { print "token: '$1'\n"; redo; } }

Produces the following output:

token: '\$bar'

That is, it immediately matches '\$bar' and 'foo' gets skipped over (though it should be matched first by the second RE). If the \\? is changed to \\ in the first RE, or if the input is changed to 'foo$bar', then the 'foo' is matched correctly by the second RE. Unfortunately, neither of those is the logic I wanted.

Also, it doesn't seem to be the exact \\?, since it still matches incorrectly if I change it to (?:\\)?.

I really hope someone can give me a hint as to what is causing this strange behavior. TIA

(This is perl, version 5.005_03 built for i386-linux)

bbfu
Seasons don't fear The Reaper.
Nor do the wind, the sun, and the rain.
We can be like they are.


In reply to RE prollem: \G, \\? and disappearing data by bbfu

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.