Help for this page

Select Code to Download


  1. or download this
    foreach (keys %iso8859) {
      $str =~ s/$_/$iso8859{$_}/g;
    }
    
  2. or download this
    $str =~ s/([\xA0-\xFF])/{$iso8859{$1} ? $iso8859{$1} : $1 }/ge;
    
  3. or download this
    $str =~ s/([\xA0-\xA6])/$iso8859{$1}/g;