in reply to Win32 encoding conversion mystery
The Windows API has two versions of each function that requires text strings: An "(A)NSI" version and a "(W)ide" version.
The ANSI version expects strings encoded using the Active Code Page. The ACP can be obtained from Win32::ACP(), and am encoding name suitable for Encode::encode and Encode::decode can be obtained from "cp".Win32::ACP(). For Western machines, these are 1252 and cp1252 respectively. (Not latin1 as you said.) This is what Perl's native functions use.
To manipulate any file, you need to use the Wide version. These are made accessible by Win32::Unicode and other modules from the same distro.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Win32 encoding conversion mystery
by mithaldu (Monk) on Aug 13, 2018 at 16:26 UTC | |
by Anonymous Monk on Aug 13, 2018 at 17:23 UTC | |
by mithaldu (Monk) on Aug 13, 2018 at 17:36 UTC | |
by ikegami (Patriarch) on Aug 15, 2018 at 23:14 UTC | |
by mithaldu (Monk) on Aug 16, 2018 at 11:29 UTC | |
by Anonymous Monk on Aug 14, 2018 at 00:12 UTC | |
by mithaldu (Monk) on Aug 14, 2018 at 08:38 UTC | |
|