我们在使用STL中string容器进行查找时需要注意到find()和rfind()的使用特点,find()是从左往右进行查找,而rfind()是从右往左查找。
string str111 = "abcdefbc"; int pos1 = str111.find("bc"); cout<<"pos1= "<<pos1<<endl; pos1 = str111.rfind("bc"); cout<<"pos1= "<<pos1<<endl;
结果:
标签:string,str111,C++,学习,rfind,查找,注意,find From: https://www.cnblogs.com/siwuliu-916/p/17208324.html