📜  C++ string.find_first_not_of()函数

📅  最后修改于: 2020-10-21 01:53:50             🧑  作者: Mango

C++ string.find_first_not_of()

此函数用于搜索不匹配任何字符串中指定的字符的第一个字符的字符串。

句法

考虑两个字符串str1和str2。语法为:

str1.find_first_not_of(str2);

参量

str:str是要在搜索中使用的字符串。

pos:它定义开始搜索的位置。

n:标识要搜索的字符的字符数。

ch:定义要搜索的字符

返回值

它返回不匹配的第一个字符的位置。

例子1

让我们看一个简单的例子。

#include
using namespace std;
int main()
{
string str = "Hello";
cout<< "String contains :" << str <<'\n';
            cout<< str.find_first_not_of("Hllo");
           }   

输出:

String contains : Hello
1

例子2

让我们看一个简单的示例,其中指定了开始搜索的位置。

#include
using namespace std;
int main()
{
string str = "Welcome to the javatpoint";
cout<< "String contains :" << str <<'\n';
cout<< str.find_first_not_of("COME",3);
return 0;
 }

输出:

String contains : Welcome to the javatpoint
3