Answers for "check if string conttains c++"

C++
7

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
10

c++ string contains

if (string1.find(string2) != std::string::npos) {
    std::cout << "found!" << '\n';
}
Posted by: Guest on April-02-2020

Code answers related to "check if string conttains c++"

Browse Popular Code Answers by Language