C++ 字符串 find_first_not_of()函数

C++ 字符串 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

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程