substr 'to-end-of-string' option : string substr « String « C++






substr 'to-end-of-string' option

  
 

#include <iostream>
using std::cout;
using std::endl;

#include <string>
using std::string;

int main()
{
   string s1( "AA1234567890asdfasdf" );
   string s2( " AAB" );
   string s3;

   // test substr "to-end-of-string" option
   cout << "The substring of s1 starting at\n"
      << "location 5, s1.substr(5), is:\n"
      << s1.substr( 5 ) << endl; 

   return 0;
}

/* 
The substring of s1 starting at
location 5, s1.substr(5), is:
4567890asdfasdf

 */        
    
  








Related examples in the same category

1.string member function substr
2.Split file name in command line into base name and extension
3.Obtain a substring
4.Find substring day in a string and check if it was found