Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
       thedoe1      => sub { (my $dum) = $str =~ /(?<!abc).*abc\s(\d+)/gs;
    + },
       thedoe2      => sub { (my $dum) = $str =~ /abc(?!.*abc)\s(\d+)/s; }
    +,
    });