Help for this page

Select Code to Download


  1. or download this
      my %respell = ( 'ze' => "\x{017e}e", ... );
    
  2. or download this
    use Unicode::Normalize;
    
    ...
        $respell{$ascii_word} = $word;
    }
    close INFO;
    
  3. or download this
    open( INPUT, "<:utf8", "input" ) or die "input: $!";
    open( OUTPUT, ">:utf8", "respelled" ) or die "respelled: $!";
    ...
        }
        print OUTPUT $outstr;
    }