in reply to Re: Difference between tr// and s///?in thread Difference between tr/// and s///?
transliterate => sub { (my $x = $todo) =~ tr/+/ / }, substitution => sub { (my $x = $todo) =~ s/\+/ /g }, just_copy => sub { (my $x = $todo) }, [download]