Horje
c++ find string in string Code Example
c++ string contains
if (string1.find(string2) != 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
get ascii value of string in C++ Code Example get ascii value of string in C++ Code Example
how to pass arrays by reference c++ Code Example how to pass arrays by reference c++ Code Example
template function in class c++ Code Example template function in class c++ Code Example
C++ remove last element from array Code Example C++ remove last element from array Code Example
what is push() c++ Code Example what is push() c++ Code Example

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