此函數用於查找指定的子字符串。
用法
考慮兩個字符串 str1 和 str2。語法是:
str1.find(str2);
參數
str:要搜索的字符串。
pos:它定義了開始搜索的字符位置。
n:要搜索的字符串中的字符數。
ch:它定義了要搜索的字符。
返回值
它返回第一個匹配的第一個字符的位置。
例子1
讓我們看一個簡單的例子。
#include<iostream>
using namespace std;
int main()
{
string str= "java is the best programming language";
cout << str<<'\n';
cout <<" Position of the programming word is:";
cout<< str.find("programming");
return 0;
}
輸出:
Java is the best programming language Position of the programming word is 17
例子2
讓我們通過將字符的位置作為參數傳遞來查看簡單示例。
#include<iostream>
using namespace std;
int main()
{
string str= "Mango is my favorite fruit";
cout << str<<'\n';
cout<< " position of fruit is:";
cout<< str.find("fruit",12);
return 0;
}
輸出:
Mango is my favorite fruit Position of fruit is 21
例子3
讓我們看一個查找單個字符的簡單示例。
#include<iostream>
using namespace std;
int main()
{
string str = "javatpoint";
cout << "String contains:" << str;
cout<< "position of p is:" << str.find('p');
return 0;
}
輸出:
String contains:javatpoint Position of p is 5
相關用法
- C++ String swap()用法及代碼示例
- C++ String back()用法及代碼示例
- C++ String append()用法及代碼示例
- C++ String Assign()用法及代碼示例
- C++ String begin()用法及代碼示例
- C++ String size()用法及代碼示例
- C++ String resize()用法及代碼示例
- 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 cend()用法及代碼示例
- C++ String pop_back()用法及代碼示例
- C++ String find_first_not_of()用法及代碼示例
- C++ String find_last_of()用法及代碼示例
- C++ String erase()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ String Find()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。