इस लेख में, हम C++ STL में कार्य, वाक्य रचना और strchr () फ़ंक्शन के उदाहरणों पर चर्चा करेंगे।
strchr () क्या है?
strchr() फ़ंक्शन C++ STL में एक इनबिल्ट फ़ंक्शन है, जिसे
यदि वर्ण स्ट्रिंग में मौजूद नहीं है, तो फ़ंक्शन नल पॉइंटर लौटाता है।
सिंटैक्स
char* strchr( char* str, char charac );
पैरामीटर
फ़ंक्शन निम्नलिखित पैरामीटर को स्वीकार करता है-
-
str - यह वह स्ट्रिंग है जिसमें हमें चरित्र की तलाश करनी होती है।
-
चरक - यह वह वर्ण है जिसे हम स्ट्रिंग स्ट्र में खोजना चाहते हैं।
रिटर्न वैल्यू
यह फ़ंक्शन उस स्थान पर एक पॉइंटर लौटाता है जहां वर्ण पहली बार स्ट्रिंग में दिखाई दिया था। यदि वर्ण नहीं मिलता है तो यह शून्य सूचक देता है।
इनपुट -
char str[] = "Tutorials Point"; char ch = ‘u’;
आउटपुट - u स्ट्रिंग में मौजूद है।
उदाहरण
#include <iostream> #include <cstring> using namespace std; int main(){ char str[] = "Tutorials Point"; char ch_1 = 'b', ch_2 = 'T'; if (strchr(str, ch_1) != NULL) cout << ch_1 << " " << "is present in string" << endl; else cout << ch_1 << " " << "is not present in string" << endl; if (strchr(str, ch_2) != NULL) cout << ch_2 << " " << "is present in string" << endl; else cout << ch_2 << " " << "is not present in string" << endl; return 0; }
आउटपुट
b is not present in string T is present in string
उदाहरण
#include <iostream> #include <cstring> using namespace std; int main(){ char str[] = "Tutorials Point"; char str_2[] = " is a learning portal"; char ch_1 = 'b', ch_2 = 'T'; if (strchr(str, ch_1) != NULL){ cout << ch_1 << " " << "is present in string" << endl; } else{ cout << ch_1 << " " << "is not present in string" << endl; } if (strchr(str, ch_2) != NULL){ cout << ch_2 << " " << "is present in string" << endl; strcat(str, str_2); cout<<"String after concatenation is : "<<str; } else{ cout << ch_2 <<" " << "is not present in string" << endl; } return 0; }
आउटपुट
b is not present in string T is present in string String after concatenation is : Tutorials Point is a learning portal