std::string - 从开始到结束获取数据
我想获取两个索引之间的一些数据。 例如,我有字符串:“只是测试...”,我需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
substr
:注意第二个参数是子字符串的长度,而不是索引(你的问题有点不清楚,因为从2到6的子字符串实际上是' st t',而不是'st tes')。
Use
substr
: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').
使用 substr 方法:
use the substr method: