in reply to Re: Contacting the author of a module?
in thread Contacting the author of a module?
#Remove all the unicode characters sub sanitize { my $unicode = $_[0] ; my $ascii ; for my $char (split(//, $unicode)) { $ascii .= $char if ord($char) < 256 } return $ascii; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Contacting the author of a module?
by Corion (Patriarch) on Jan 06, 2023 at 13:34 UTC | |
|
Re^3: Contacting the author of a module?
by ikegami (Patriarch) on Jan 06, 2023 at 19:04 UTC |