Help for this page

Select Code to Download


  1. or download this
    $replace = '$1 thirdword';
    ($varsub = $string) =~ s/$search/$replace/;
    
  2. or download this
    $replace = '$1 . " thirdword"';
    ($varsub = $string) =~ s/$search/$replace/ee;