gpt4 book ai didi

c++ - wchar_t* 到字符串之间的转换

转载 作者:行者123 更新时间:2023-11-30 01:50:22 26 4
gpt4 key购买 nike

我尝试使用服务模型元数据实用工具在 C++ 中为 Web 服务创建客户端,我已经建立了两个端点之间的通信,但在客户端我收到了一个 wchar_t*,如何将其转换为字符串?

注意:服务器端使用的是UTF-8编码。

最佳答案

使用这个简单的函数:

std::string wchar2string(wchar_t* str)
{
std::string mystring;
while( *str )
mystring += (char)*str++;
return mystring;
}

希望这个功能可以帮到你!

关于c++ - wchar_t* 到字符串之间的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27512066/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com