gpt4 book ai didi

c++ - 连接 LPWSTR 字符串

转载 作者:可可西里 更新时间:2023-11-01 16:27:26 26 4
gpt4 key购买 nike

在 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++ - 连接 LPWSTR 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15421139/

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