Help for this page

Select Code to Download


  1. or download this
    our %asciiize = (
      "\x{00C0}" => "A",    "\x{00C1}" => "A",    "\x{00C2}" => "A",
    ...
      "\x{00DE}" => "TH",
    );
    
  2. or download this
    # in-place
    sub asciiize {
    ...
    sub giveascii {
      asciiize(my $x = shift);
    }