Help for this page

Select Code to Download


  1. or download this
      my $string  = '01234567890';
      my $find    = '0';
    ...
        substr($string, $pos, length($find), $replace);
        $pos = index($string, $find, $pos + length($replace));
      }
    
  2. or download this
      $string =~ s/\Q$find\E/$replace/g;