Help for this page
use strict; use warnings; ... eval "\$string =~ tr/$oldchars//d"; print $string; #will print zz
$string =~ s/[$oldchars]//g;