Diese Funktion wird zum Suchen einer bestimmten Teilzeichenfolge verwendet.
Syntax
Betrachten Sie zwei Zeichenfolgen str1 und str2. Syntax wäre:
str1.find(str2);
Parameter
str: Zeichenfolge, nach der gesucht werden soll.
Pos: Es definiert die Position des Zeichens, an der die Suche beginnen soll.
N : Anzahl der Zeichen in einer Zeichenfolge, nach denen gesucht werden soll.
CH : Es definiert das Zeichen, nach dem gesucht werden soll.
Rückgabewert
Es gibt die Position des ersten Zeichens der ersten Übereinstimmung zurück.
Beispiel 1
Sehen wir uns das einfache Beispiel an.
#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></' ';>
Beispiel 2
Sehen wir uns ein einfaches Beispiel an, indem wir die Position eines Zeichens als Parameter übergeben.
#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></\' \';>
Beispiel 3
Sehen wir uns ein einfaches Beispiel für die Suche nach einem einzelnen Zeichen an.
#include using namespace std; int main() { string str = 'javatpoint'; cout << 'String contains :' << str; cout<< 'position of p is :' << str.find('p'); return 0; }
Ausgabe:
String contains : javatpoint Position of p is 5
\' \';>' ';>