in reply to Convert to UTF-8 on Perl 4
thus:sub iso88591 { $_[0] =~ s#([\x80-\xFF])#$iso88591[ord($1)-0x80]#sge; } #iso88591
There are probably other modules out there that would work under Perl 4, but I'm familiar with this particular module (because I wrote the script that generates it ;-).iso88591( $key );
Liz
|
|---|