该函数用于查找指定字符第一次出现的位置。
用法
考虑字符串 str1 和 str。语法是:
str1.find_first_of(str);
参数
str:包含要搜索的字符的字符串。
pos:它定义了开始搜索的位置。
n:标识要搜索的字符的字符数。
ch:它定义了要搜索的字符
返回值
它返回搜索字符的位置。
示例 1
让我们看一个简单的例子。
#include<iostream>
using namespace std;
int main()
{
string str1 = "Dancing is my favorite hobby";
cout << "String contains:"<< str1<< '\n';
cout <<"Position of the first occurrence of the string 'favorite' is " << str1.find_first_of("favorite");
return 0;
}
输出:
String contains:Dancing is my favorite hobby Position of the first occurrence of the string favorite is 1
示例 2
当指定开始搜索的位置时,让我们看一个简单的例子。
#include<iostream>
using namespace std;
int main()
{
string str = "Welcome to the programming world";
cout<< "String contains:"<< str <<'\n';
cout<<"Now, start the search from the second position and we find the first occurrence of the 'programming' is:"<<str.find_first_of("programming",2);
return 0;
}
输出:
String contains:Welcome to the programming world Now, start the search from the second position and we find the first occurrence of the 'programming' is:4
示例 3
让我们看一个简单的例子来查找单个字符第一次出现的位置。
#include<iostream>
using namespace std;
int main()
{
string str = "javatpoint tutorial";
cout << "String contains:" << str<< '\n';
cout <<"Position of the first occurrence of 'a' character is:" << str.find_first_of('a');
return 0;
}
输出:
String contains javatpoint tutorial Position of the first occurrence of 'a' character is:1
相关用法
- C++ String find_first_not_of()用法及代码示例
- C++ String find_last_of()用法及代码示例
- C++ String find_last_not_of()用法及代码示例
- C++ String front()用法及代码示例
- C++ String swap()用法及代码示例
- C++ String back()用法及代码示例
- C++ String append()用法及代码示例
- C++ String Assign()用法及代码示例
- C++ String begin()用法及代码示例
- C++ String size()用法及代码示例
- C++ String resize()用法及代码示例
- C++ String Find()用法及代码示例
- C++ String crend()用法及代码示例
- C++ String compare()用法及代码示例
- C++ String empty()用法及代码示例
- C++ String replace()用法及代码示例
- C++ String at()用法及代码示例
- C++ String insert()用法及代码示例
- C++ String clear()用法及代码示例
- C++ String Data()用法及代码示例
注:本文由纯净天空筛选整理自 C++ String find_first_of()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。