Re: Best way to convert between GBK/GB18030 to utf8 ?

2023-05-23 Thread ryuukk_ via Digitalmars-d-learn

On Tuesday, 23 May 2023 at 02:58:21 UTC, John Xu wrote:

What is the best way to convert a GBK/GB18030 file contents,
i.e. read via: std.stdio.read(gbkFile).to!string ,
to utf8 encoding ?


https://github.com/lytsing/gbk-utf8/blob/master/utf8.c

Here, it is C, but porting this to D is easy

There is both implementation for windows/linux




Re: Best way to convert between GBK/GB18030 to utf8 ?

2023-05-23 Thread WebFreak001 via Digitalmars-d-learn

On Tuesday, 23 May 2023 at 02:58:21 UTC, John Xu wrote:

What is the best way to convert a GBK/GB18030 file contents,
i.e. read via: std.stdio.read(gbkFile).to!string ,
to utf8 encoding ?


I don't think we have any implementation of that encoding yet. If 
you decide to make your own, don't forget to share it with the 
forum.





Best way to convert between GBK/GB18030 to utf8 ?

2023-05-22 Thread John Xu via Digitalmars-d-learn

What is the best way to convert a GBK/GB18030 file contents,
i.e. read via: std.stdio.read(gbkFile).to!string ,
to utf8 encoding ?