Help for this page
while ( ( my $index = index substr( $_, pos() ), $find), $index != -1 ) { substr $_, $index, length $find, $replace; pos() = $index + length $find; }
while ( ( my $index = index $_, $find), $index != -1 ) { substr $_, $index, length $find, $replace; }