$input = “abdce”; $output = $input =~ s/abc/123; print $input; print $output
abcde nullstring
abdce 3
abdce null string
abdce 0
abdce 1