gpt4 book ai didi

c++ - 在 C++ 中查找两个索引之间的子字符串

转载 作者:搜寻专家 更新时间:2023-10-31 02:06:15 24 4
gpt4 key购买 nike

我想找到两个索引之间的子字符串。 substr C++ 中的 (start_index, number_of_characters) 函数根据字符数返回子字符串。因此,将它与开始和结束索引一起使用的小技巧如下:

 // extract 'go' from 'iamgoodhere'
string s = "iamgoodhere";
int start = 3, end = 4;
cout<<s.substr(start,end-start+1); // go

C++ 中还有哪些其他方法可以获取两个索引之间的子字符串?

最佳答案

你可以这样做:

std::string(&s[start], &s[end+1])

或者这个:

std::string(s.c_str() + start, s.c_str() + end + 1)

或者这个:

std::string(s.begin() + start, s.begin() + end + 1)

这些方法要求 end 小于 s.size(),而 substr() 不需要。

不要提示 +1——C++ 中的范围总是指定为包含开始和不包含结束。

关于c++ - 在 C++ 中查找两个索引之间的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50548045/

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