Help for this page
my $string = '01234567890'; my $find = '0'; my $replace = 'a'; ... substr($string, $pos, length($find), $replace); $pos = index($string, $find, $pos + length($replace)); }