s/[^[:print:]]/_/g; #### s/[^[:print:]]/$hash{$&}/g; # Some people dislike $& #### s/[^[:print:]]/$hash{$&} || '_'/ge; # or # s/[^[:print:]]/exists $hash{$&} ? $hash{$&} : '_'/ge;