Help for this page

Select Code to Download


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