其他分享
首页 > 其他分享> > c – LPWSTR字符串的连接

c – LPWSTR字符串的连接

作者:互联网

在Visual C中,我有一个

LPWSTR mystring;

已在代码中的其他位置定义.

我想创建一个新的LPWSTR,其中包含:

"hello " + mystring + " blablabla"        (i.e. a concatenation)

我生气这么简单(连接)!非常感谢,我迷路了!

解决方法:

C方式:

std::wstring mywstring(mystring);
std::wstring concatted_stdstr = L"hello " + mywstring + L" blah";
LPCWSTR concatted = concatted_stdstr.c_str();

标签:c,string,concatenation,winapi,string-concatenation
来源: https://codeday.me/bug/20191002/1843382.html