http://qs1969.pair.com?node_id=1173108


in reply to Re: Removing Non-Ascii chars from text file
in thread Removing Non-Ascii chars from text file

You also need to be aware of what the encoding of the file is and what encoding Perl defaults to on your system. For a UTF-8 file on Windows, I found that I needed to add "use open qw(:std :utf8);" before the "s///" command so that Perl would expect the input to be UTF-8.