Help for this page

Select Code to Download


  1. or download this
    $_       = 'foo bbbbbbbah bar';
    $find    = 'bah';
    $replace = 'ah';
    
  2. or download this
    $_       = 'foo babab bar';
    $find    = 'bab';
    $replace = 'xxx';
    
  3. or download this
    sub replace {
       die "Some helpful messsage" unless 3 == grep defined $_, @_[0..2];
    ...
       substr($str,$_,$l,$rep) for reverse @pos;
       return $str;
    }