Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    if ($string =~ /bar(.*)bow/) {
        print "between bar and bow is '$1'\n";
    }
    
  2. or download this
    $ perl x.pl
    between bar and bow is ' baz '