C++ 字符串 find_last_not_of()函数
该函数用于在字符串中查找最后一个与字符串中指定字符列表中的任何字符不匹配的字符。
语法
假设有两个字符串str1和str2。其语法为:
str1.find_last_not_of(str2);
参数
str: str是要在其中搜索的字符串。
pos: 它定义了开始搜索的位置。
n: 标识要搜索的字符的数量。
ch: 它定义要搜索的字符。
返回值
此函数返回与最后一个不匹配的字符的位置。
示例1
让我们看一个简单的示例。
#include<iostream>
using namespace std;
int main()
{
string str = "C is a procedure oriented language";
cout<< "String contains :" << str <<'\n';
cout<< str.find_last_not_of("C is a structural language");
return 0;
}
输出:
String contains : C is a procedure oriented language
24