logo

Recherche de chaîne C++()

Cette fonction est utilisée pour rechercher une sous-chaîne spécifiée.

Syntaxe

Considérons deux chaînes str1 et str2. La syntaxe serait :

 str1.find(str2); 

Paramètres

str : Chaîne à rechercher.

pos : Il définit la position du caractère à partir de laquelle démarrer la recherche.

n : Nombre de caractères dans une chaîne à rechercher.

ch : Il définit le caractère à rechercher.

Valeur de retour

Il renvoie la position du premier caractère de la première correspondance.

Exemple 1

Voyons l'exemple simple.

 #include using namespace std; int main() { string str= &apos;java is the best programming language&apos;; cout &lt;&lt; str&lt;<'
'; 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&apos;s see simple example by passing position of a character as a parameter.</p> <pre> #include using namespace std; int main() { string str= &apos;Mango is my favorite fruit&apos;; cout &lt;&lt; str&lt;<'
'; 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&apos;s see simple example of finding a single character.</p> <pre> #include using namespace std; int main() { string str = &apos;javatpoint&apos;; cout &lt;&lt; &apos;String contains :&apos; &lt;&lt; str; cout&lt;&lt; &apos;position of p is :&apos; &lt;&lt; str.find(&apos;p&apos;); return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> String contains : javatpoint Position of p is 5 </pre> <br></'
';></pre></'
';>

Exemple 2

Voyons un exemple simple en passant la position d'un caractère comme paramètre.

 #include using namespace std; int main() { string str= &apos;Mango is my favorite fruit&apos;; cout &lt;&lt; str&lt;<\'
\'; 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&apos;s see simple example of finding a single character.</p> <pre> #include using namespace std; int main() { string str = &apos;javatpoint&apos;; cout &lt;&lt; &apos;String contains :&apos; &lt;&lt; str; cout&lt;&lt; &apos;position of p is :&apos; &lt;&lt; str.find(&apos;p&apos;); return 0; } </pre> <p> <strong>Output:</strong> </p> <pre> String contains : javatpoint Position of p is 5 </pre> <br></\'
\';>

Exemple 3

Voyons un exemple simple de recherche d'un seul caractère.

 #include using namespace std; int main() { string str = &apos;javatpoint&apos;; cout &lt;&lt; &apos;String contains :&apos; &lt;&lt; str; cout&lt;&lt; &apos;position of p is :&apos; &lt;&lt; str.find(&apos;p&apos;); return 0; } 

Sortir:

 String contains : javatpoint Position of p is 5