- or download this
my $re_asalog = qr{
^
...
(\S+) # $5 action
...
}xm;
- or download this
my $re_asalog = qr{
^ # start of line
(?<time> .{15} )
...
# ...
$ # end of line
}mx;
- or download this
#!/usr/bin/perl --
use Data::Dump ;
...
Q => 4,
}
Freeing REx: "%n (?<P>(?&V)) # match <V> and save to $+{P} %n (?<Q>
+ .) "...