Help for this page

Select Code to Download


  1. or download this
    if($str =~ s#check this [^out]#check this one#){
    }
    
  2. or download this
    $str ="$str ="check this out check this here";";
    
    $str =~ s#check this ((?!out).)+#check this one#gs;
    
    print $str;