string::find_last_not_of
Posted xpylovely
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string::find_last_not_of相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1("abcdemyyngl");
string s2("mngf");
size_t n = s1.find_last_not_of(s2);
cout << n << endl;
n = s1.find_last_not_of(s2, 6); //在s2中查找s1位置6之前的每个字符
cout << n << endl;
const char *s3 = "ghijy";
cout << s1.find_last_not_of(s3, 6) << endl;
cout << s1.find_last_not_of(s3, 5, 4) << endl;在s3的前4个字符中查找s1位置5前的字符
cout << s1.find_last_not_of(‘l‘, 8) << endl;
cout << s1.find_last_not_of(‘l‘, 7) << endl;
cout << s1.find_last_not_of(‘l‘) << endl;
return 0;
}
以上是关于string::find_last_not_of的主要内容,如果未能解决你的问题,请参考以下文章