C++中TCHR转string

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++中TCHR转string相关的知识,希望对你有一定的参考价值。

一般C++标准库中的string不支持宽字节,也就是unicode字符集。

所以要想将TCHAR或wchar转换成string,则需调用系统函数WideCharToMultiByte

int len = WideCharToMultiByte(CP_ACP, 0, *s, -1, NULL, 0, NULL, NULL);
char *new_str = new char[len * sizeof(char)]; WideCharToMultiByte(CP_ACP, 0, *s, -1, new_str, len, NULL, NULL);
string s(new_str);

反之,要想将多字节转换为unicode,则需使用相反的函数即可MultiByteToWideChar

若工程的字符集为unicode,则可以使用标准库的宽字符版,即名字前加w,例如wstring,wcout,wcin

以上是关于C++中TCHR转string的主要内容,如果未能解决你的问题,请参考以下文章

如何理解这段代码片段中的两对括号?

C++ char 转 string

C++ char 转 string

(C++) CString转string 怎么转!!

C++中如何提取string数组中的数字

什么是在 C++ 中获取总内核数量的跨平台代码片段? [复制]