gpt4 book ai didi

C++ 将字符串 [4] 转换为字符串

转载 作者:行者123 更新时间:2023-11-28 08:24:55 27 4
gpt4 key购买 nike

我想将单词的最后一个字符更改为字符串。

谢谢!

编辑:添加 Jon 的尝试回答,因为它提供了一些关于他的功能需求的见解:

string x = "apple"; char c = apple[4]; string q = "";
string z = q+c;

最佳答案

std::string x = "apple";
std::string z(x.substr(4, 1));

关于C++ 将字符串 [4] 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4373727/

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