Help for this page

Select Code to Download


  1. or download this
    while ($test =~ m{$re}g) {
       print "FOO:<$1>\n";
    }
    
  2. or download this
    $test =~ s{$re}{
        print "BLA: $1 \n";
    }ge