当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ String find_first_not_of()用法及代码示例


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

用法

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

str1.find_first_not_of(str2);

参数

str:str 是用于搜索的字符串。

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

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

ch:它定义了要搜索的字符

返回值

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

例子1

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

#include<iostream>
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<iostream>
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





相关用法


注:本文由纯净天空筛选整理自 C++ String find_first_not_of()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。