$input =~ /([a-zA-Z]+)/; $input = $1; #### $input =~ s/[^a-zA-Z]//g; # keep valid stuff ($input) = $input =~ /(.*)/; # now officially untaint it