how to find a string inside a string in c++ code example

Example 1: c++ string contains

if (string1.find(string2) != std::string::npos) {
    std::cout << "found!" << '\n';
}

Example 2: c++ contains

if (s1.find(s2) != std::string::npos) {
    std::cout << "found!" << '\n';
}

Example 3: find substring in string c++

std::string parentstring = "Hello Agnosticdev, I love Tutorials";
std::string substring = "Agnosticdev";
auto index = parentstring.find(substring);

Example 4: find in string c++

size_t find (const string& str, size_t pos = 0) const;

Tags:

Cpp Example