std::string - 从开始到结束获取数据

发布于 2024-08-19 20:49:35 字数 98 浏览 2 评论 0原文

我想获取两个索引之间的一些数据。 例如,我有字符串:“只是测试...”,我需要从 2 到 6 的字符串。我应该得到: 'st tes'。

什么功能可以为我做到这一点?

I want to get some data between some 2 indexes.
For example, I have string: "just testing..." and I need string from 2 till 6. I should get:
'st tes'.

What function can do this for me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

内心激荡 2024-08-26 20:49:35

使用substr

std::string myString = "just testing...";

std::string theSubstring = myString.substr(2, 6);

注意第二个参数是子字符串的长度,而不是索引(你的问题有点不清楚,因为从2到6的子字符串实际上是' st t',而不是'st tes')。

Use substr:

std::string myString = "just testing...";

std::string theSubstring = myString.substr(2, 6);

Note that the second parameter is the length of the substring, not an index (your question is a bit unclear, since the substring from 2 to 6 is actually 'st t', not 'st tes').

〃温暖了心ぐ 2024-08-26 20:49:35

使用 substr 方法:

std::string theString = "just testing";
std::string theSubstring = theString.substr(2, 4);

use the substr method:

std::string theString = "just testing";
std::string theSubstring = theString.substr(2, 4);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文