Hi
ATM I need plenty of hacks to be able to dynamically see the OP-Tree of a Regex at runtime cause
use re 'debug' emits the code of a regex at compile time to STDERR.
lanx@nc10-ubuntu:~$ perl
use re 'debug';
my $a=qr/(?<C>1)(?<D>2)(3)(?<A>4)/;
Compiling REx "(?<C>1)(?<D>2)(3)(?<A>4)"
Final program:
1: OPEN1 'C' (3)
3: EXACT <1> (5)
5: CLOSE1 'C' (7)
7: OPEN2 'D' (9)
9: EXACT <2> (11)
11: CLOSE2 'D' (13)
13: OPEN3 (15)
15: EXACT <3> (17)
17: CLOSE3 (19)
19: OPEN4 'A' (21)
21: EXACT <4> (23)
23: CLOSE4 'A' (25)
25: END (0)
anchored "1234" at 0 (checking anchored) minlen 4
Freeing REx: "(?<C>1)(?<D>2)(3)(?<A>4)"
In Re^2: Is there really no @LAST_MATCH_START equivalent for named capture groups? I need to recompile a new regex within an eval while redirecting STDERR to a variable...
Thats hacky and cumbersome!
Is there any simpler or cleaner way to achieve this?
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.
|
|