With respect to (?xism-xism:...), beware of the docs for this (my emphasis):
One or more embedded pattern-match modifiers, to be turned on (or turned off, if preceded by "-") for the remainder of the pattern or the remainder of the enclosing pattern group (if any).
If I understand that correctly, the "only look at openings" approach will fail on something like: /(?x:((?-x:)) # (comment)
)/
or /((?-x:)) # (comment)
/x
The simplistic (?{...}) parsing I referred to is in toke.c:scan_const(); look for the test else if (s[2] == '{' /* This should match regcomp.c */
|| ((s[2] == 'p' || s[2] == '?') && s[3] == '{'))
which simply counts unescaped braces until the opening one is closed - something like: our $re_true = qr{(?=)}x;
our $re_false = qr{(?!)}x;
our $count;
/
# (?{ ... }) or (??{ ... }) or (legacy) (?p{ ... })
\G \( \? (?: \? \?? | p ) (?= \{ )
(?{ local $count = 0; })
(?:
\{ (?{ local $count = $count + 1 })
|
\} (?{ local $count = $count - 1 })
|
\\ .
|
.
)+?
(??{ $count == 0 ? $re_true : $re_false })
/xgc;
would be fitting, though I suspect there must be a simpler way.
(consider how lucky I am that the regular expression engine is not reentrant...)
Now now, no need for that sort of language.
Hugo
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|