logo

C++ String Find()

Tato funkce se používá k nalezení zadaného podřetězce.

Syntax

Uvažujme dva řetězce str1 a str2. Syntaxe by byla:

 str1.find(str2); 

Parametry

str : Řetězec, který se má hledat.

pozice: Definuje pozici znaku, na které má začít hledání.

n : Počet znaků v řetězci, které se mají hledat.

ch: Definuje znak, který se má hledat.

Návratová hodnota

Vrátí pozici prvního znaku první shody.

Příklad 1

Podívejme se na jednoduchý příklad.

 #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></'
';>

Příklad 2

Podívejme se na jednoduchý příklad předání pozice znaku jako parametru.

 #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></\'
\';>

Příklad 3

Podívejme se na jednoduchý příklad nalezení jedné postavy.

 #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; } 

Výstup:

 String contains : javatpoint Position of p is 5