in reply to Re: Foreign language characters...
in thread Foreign language characters...
instead of:fix_chars(@names);
I would rewrite it so that it either left the original list intact, or didn't return the "fixed" list. Something like:my @names = fix_chars(@names);
sub fix_chars { my @fixed = @_; for (@fixed) { tr/ΑΠΙΝΣΪέΦαπινσϊύφ/ADEIOUYOadeiouyo/; ... } return @fixed; }
-Blake
|
|---|