or download this
$string =~ s/(\P{InBasic_Latin})/ # Look for codepoi
+nts that are not in Basic_Latin; for example the sign ü
defined( $subs{ord($1)} ) # if $1 = ü, the
+n ord($1) = 252. We ask is there a value in %subs for key '251' ?
...
# You have to writ
+e into make_the_subs_hash() a line like this $subs{8224} = '¦'; . Th
+ats at [1] below
# Then re run the
+script with the extended %subs
return($string);