Answers for "find out a substring is present in a string or not? in c++"

C++
3

c++ check if string contains substring

string str ("There are two needles in this haystack.");
string str2 ("needle");

if (str.find(str2) != string::npos) {
//.. found.
}
Posted by: Guest on December-23-2020

Code answers related to "find out a substring is present in a string or not? in c++"

Browse Popular Code Answers by Language