Help for this page

Select Code to Download


  1. or download this
    $hop =~ s/(r(eg)e(xp)/mutilate($1,$2)/eg
    
  2. or download this
    while ($hop =~ m/r(eg)e(xp)/g) {
        // handle stuff
        // to replace, substr($hop,length $`,length $&) = $replace; and th
    +ink about slowness of $`, $& and all
        // to rewind, pos($hop)=$location;
    }