Horje
c++ string contains Code Example
c++ string contains
if (string1.find(string2) != std::string::npos) {
    std::cout << "found!" << '\n';
}
c++ contains
if (s1.find(s2) != std::string::npos) {
    std::cout << "found!" << '\n';
}
c++ find string in string
#include <iostream>
#include <string>
#include <algorithm>
#include <functional>

int main()
{
    std::string in = "Lorem ipsum dolor sit amet, consectetur adipiscing elit,"
                     " sed do eiusmod tempor incididunt ut labore et dolore magna aliqua";
    std::string needle = "pisci";
    auto it = std::search(in.begin(), in.end(),
                   std::boyer_moore_searcher(
                       needle.begin(), needle.end()));
    if(it != in.end())
        std::cout << "The string " << needle << " found at offset "
                  << it - in.begin() << '\n';
    else
        std::cout << "The string " << needle << " not found\n";
}




Cpp

Related
c++ cast to type of variable Code Example c++ cast to type of variable Code Example
how to return char* from function in c++ Code Example how to return char* from function in c++ Code Example
shuffle elements c++ Code Example shuffle elements c++ Code Example
default access specifier in c++ Code Example default access specifier in c++ Code Example
c++ check if char is number Code Example c++ check if char is number Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9