Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Regex troubles...

by polettix (Vicar)
on Apr 24, 2016 at 22:16 UTC ( [id://1161404]=note: print w/replies, xml ) Need Help??


in reply to Regex troubles...

Hack using (?{ code }), which is not experimental any more at least as of 5.22(.0+) judging from the docs, and was available at least as of 5.8(.8+), although I don't know how stable it has been in time:
#!/usr/bin/env perl use strict; use warnings; use English qw( -no_match_vars ); use Data::Dumper; my $string = 'foobarbaaaarbaz'; my @second; if (my @matches = $string =~ m{\A (fo*) (?: (?<BAR>\s*ba+r) (?{push @second, $^N}))+ (\s*ba*z) \z}mxs ) { $matches[1] = \@second; print Dumper \@matches; } # $VAR1 = [ # 'foo', # [ # 'bar', # 'baaaar' # ], # 'baz' # ];

Update: as noted below in a comment, the capture BAR is not needed. I added it while playing with %- and %+, and forgot to remove it before posting the example... I'm leaving it though, so that the comment below can still make sense. Anyway, always remember the old adage about regular expressions...

perl -ple'$_=reverse' <<<ti.xittelop@oivalf

Io ho capito... ma tu che hai detto?

Replies are listed 'Best First'.
Re^2: Regex troubles...
by AnomalousMonk (Archbishop) on Apr 25, 2016 at 07:04 UTC
    (?: (?<BAR>\s*ba+r) (?{push @second, $^N}))+

    What is the advantage of using the  (?<BAR>\s*ba+r) named capture group rather than an ordinary capture group? The name is never referred to anywhere.


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1161404]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (1)
As of 2024-04-19 00:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found