Help for this page

Select Code to Download


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