string str = "geeksforgeeks a computer science";
string str1 = "geeks";
// Find first occurrence of "geeks"
size_t found = str.find(str1);
if (found != string::npos)
cout << "First occurrence is " << found << endl;
// Find next occurrence of "geeks". Note here we pass
// "geeks" as C style string.
char arr[] = "geeks";
found = str.find(arr, found+1);
if (found != string::npos)
cout << "Next occurrence is " << found << endl;
#include<iostream>
using namespace std;
int main()
{
string str= "Welcome to Softhunt.net Tutorial Website";
cout << str<<'
';
cout <<" Position of the 'to' word is :";
cout<< str.find("to");
return 0;
}
const char* c = "Word";
string str = "WhereIsMyWordThatINeed";
cout << "the word is at index " << str.find(c);
//this will print "the word is at index 9"
#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() << '
';
else
std::cout << "The string " << needle << " not found
";
}