search a sub string : string find « String « C++






search a sub string

  
 

#include <iostream>
#include <string>
using namespace std;

int main()
{
  int i;
  string s1 ="this is a test.";
  string s2;

  i = s1.find("is");
  if(i!=string::npos) {
    cout << "Match found at " << i << endl;
    cout << "Remaining string is:\n";
    s2.assign(s1, i, s1.size());
    cout << s2;
  }
  cout << "\n\n";


  return 0;
}

/* 
Match found at 2
Remaining string is:
is is a test.


 */        
    
  








Related examples in the same category

1.string.find(substring)
2.string.rfind(substring)
3.string.find_first_of( substring )
4.string.find_last_of(substring)
5.string.find_first_not_of( substring )
6.Find the first that's not in this set, starting from the end
7.Find the first of any of these chars starting from the end
8.Search from the beginning
9.Search from the end
10.Find the first of any of these chars
11.Find the first that's not in this set
12.equivalent of strcspn() and strpbrk()
13.equivalent of strspn()
14.Using find with reverse iteration
15.Use the STL find() algorithm to obtain an iterator to the start of the first 'a'