この関数は、指定された部分文字列を検索するために使用されます。
構文
2 つの文字列 str1 と str2 について考えてみましょう。構文は次のようになります:
str1.find(str2);
パラメーター
文字列: 検索する文字列。
位置 : 検索を開始する文字の位置を定義します。
n : 検索する文字列内の文字数。
ch: 検索する文字を定義します。
戻り値
最初に一致した最初の文字の位置を返します。
例1
簡単な例を見てみましょう。
#include using namespace std; int main() { string str= 'java is the best programming language'; cout << str<<' '; cout <<' position of the programming word is :'; cout<< str.find('programming'); return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Java is the best programming language Position of the programming word is 17 </pre> <h2>Example 2</h2> <p>Let's see simple example by passing position of a character as a parameter.</p> <pre> #include using namespace std; int main() { string str= 'Mango is my favorite fruit'; cout << str<<' '; cout<< ' position of fruit is :'; str.find('fruit',12); return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Mango is my favorite fruit Position of fruit is 21 </pre> <h2>Example 3</h2> <p>Let's see simple example of finding a single character.</p> <pre> #include using namespace std; int main() { string str = 'javatpoint'; cout << 'String contains :' << str; cout<< 'position of p is :' << str.find('p'); return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> String contains : javatpoint Position of p is 5 </pre> <br></' ';></pre></' ';>
例 2
文字の位置をパラメータとして渡す簡単な例を見てみましょう。
#include using namespace std; int main() { string str= 'Mango is my favorite fruit'; cout << str<<\' \'; cout<< \' position of fruit is :\'; str.find(\'fruit\',12); return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Mango is my favorite fruit Position of fruit is 21 </pre> <h2>Example 3</h2> <p>Let's see simple example of finding a single character.</p> <pre> #include using namespace std; int main() { string str = 'javatpoint'; cout << 'String contains :' << str; cout<< 'position of p is :' << str.find('p'); return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> String contains : javatpoint Position of p is 5 </pre> <br></\' \';>
例 3
単一の文字を検索する簡単な例を見てみましょう。
#include 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
\' \';>' ';>