在python中,我能够切割部分字符串;换句话说,只需在某个位置后打印字符。在C ++中是否有相同的东西?
Python代码:
text= "Apple Pear Orange"
print text[6:]
会打印:Pear Orange
答案 0 :(得分:23)
是的,这是substr
方法:
basic_string substr( size_type pos = 0,
size_type count = npos ) const;
返回子串[pos,pos + count]。如果请求的子字符串超出字符串的结尾,或者如果count == npos,则返回的子字符串为[pos,size())。
#include <iostream>
#include <string>
int main(void) {
std::string text("Apple Pear Orange");
std::cout << text.substr(6) << std::endl;
return 0;
}
答案 1 :(得分:7)
在C ++中,最接近的等价物可能是string :: substr()。 例如:
std::string str = "Something";
printf("%s", str.substr(4)); // -> "thing"
printf("%s", str.substr(4,3)); // -> "thi"
(第一个参数是初始位置,第二个参数是切片的长度)。 第二个参数默认为字符串结尾(string :: npos)。
答案 2 :(得分:4)
std::string text = "Apple Pear Orange";
std::cout << std::string(text.begin() + 6, text.end()) << std::endl; // No range checking at all.
std::cout << text.substr(6) << std::endl; // Throws an exception if string isn't long enough.
请注意,与python不同,第一个不进行范围检查:您的输入字符串需要足够长。根据您对切片的最终用途,可能还有其他替代方法(例如直接使用迭代器范围而不是像我这样制作副本)。
答案 3 :(得分:3)
听起来像你想要的string::substr:
std::string text = "Apple Pear Orange";
std::cout << text.substr(6, std::string::npos) << std::endl; // "Pear Orange"
此处string::npos与“直到字符串结尾”同义(并且也是默认值,但为了清楚起见,我将其包括在内)。
答案 4 :(得分:3)
看起来C ++ 20将具有Ranges https://en.cppreference.com/w/cpp/ranges 旨在提供除其他功能外的类似python的切片 http://ericniebler.com/2014/12/07/a-slice-of-python-in-c/ 所以我正在等待它放入我最喜欢的编译器中,同时使用 https://ericniebler.github.io/range-v3/
答案 5 :(得分:2)
您可以使用字符串class执行类似的操作:
std::string text = "Apple Pear Orange";
size_t pos = text.find('Pear');
答案 6 :(得分:0)
**第一个参数决定起始索引,第二个参数指定结束索引记住字符串的起始是从 0 **
string s="Apple";
string ans=s.substr(2);//ple
string ans1=s.substr(2,3)//pl