Find substring day in a string and check if it was found : string substr « String « C++






Find substring day in a string and check if it was found

  
#include <string>
#include <iostream>

int main ()
{
    using namespace std;

    string strSample ("this is a test");
    size_t nOffset = strSample.find ("test", 0);

    // Check if the substring was found...
    if (nOffset != string::npos)
        cout << "found:" << nOffset;
    else
        cout << "not found." << endl;

    return 0;
}
  
    
  








Related examples in the same category

1.string member function substr
2.substr 'to-end-of-string' option
3.Split file name in command line into base name and extension
4.Obtain a substring