Help for this page

Select Code to Download


  1. or download this
    sub foo { $mystring }
    
    while (foo =~ m/blah../g) {
    
  2. or download this
    $/=undef;
    for (<> =~ /\((.*?)\)/g) { print $1, "\n" }