using encodings other than UTF-8 - part 2
Piotr Dworaczyk
pjdworaczyk at o2.pl
Sat Oct 6 13:45:46 PDT 2007
> I use something like this for converting from other encodings:
>
> char[] readFile(char[] name) {
>
> char[] file=cast(char[])std.file.read(name) ~ '\0';
> file=std.windows.charset.fromMBSz(cast(char*)file, 1250);
> return file;
> }
>
> and similarly for writing:
> std.windows.charset.toMBSz(content, 1250); //1250 - polish
> windows codepage
>
Thanks / Dzieki / for the code.
> But I have to agree that support for codepages should be much better
> (e.g. easy detecting
> current codepage)...
Welcome to The Club :)
--
Using Opera Mail: http://www.opera.com/mail/
More information about the Digitalmars-d
mailing list