Help for this page

Select Code to Download


  1. or download this
       foo a b cd efg bar
    
  2. or download this
       my @matches;
       if ($data =~ m/foo (.*) bar/) { # everything between foo and bar go
    +es into $1
          @matches = split(' ', $1); # split on whitespace
       }