當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ String find_first_of()用法及代碼示例


該函數用於查找指定字符第一次出現的位置。

用法

考慮字符串 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_of()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。