Help for this page

Select Code to Download


  1. or download this
      my $string  = '01234567890';
      my $find    = '0';
      my $replace = 'a';  
    ...
        substr($string, $pos, length($find), $replace);
        $pos = index($string, $find, $pos + length($replace));
      }