in reply to Re^2: A problem with dash typography
in thread A problem with dash typography
If you put:
at the top of the script, this tells Perl that your source code contains UTF8-encoded unicode characters.use utf8;
If you want to read and write UTF8, do this at the top of the script:
Hope this helps!binmode STDIN, ':utf8'; binmode STDOUT, ':utf8';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: A problem with dash typography
by hsmyers (Canon) on Sep 10, 2015 at 16:54 UTC |