Help for this page

Select Code to Download


  1. or download this
    my $line = q{one <two>};
    $line =~ /
    ...
    /x;
    
    print $1, $2;
    
  2. or download this
    one two
    
  3. or download this
    my $line = q{one <four>};
    
  4. or download this
    while ($line =~ /pattern/g){
      # do something with $1 and $2
    }
    
  5. or download this
    one [link|file.html] two [email|me@home.com] three [not a link]
    
  6. or download this
      while (
        $line =~ 
    ...
          # more stuff
        }
      }