string member function substr : string substr « String « C++






string member function substr

  
 

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

#include <string>
using std::string;

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

   // test string member function substr
   cout << "The substring of s1 starting at location 0 for\n"
      << "14 characters, s1.substr(0, 14), is:\n"
      << s1.substr( 0, 14 ) << "\n\n";

   return 0;
}

/* 
The substring of s1 starting at location 0 for
14 characters, s1.substr(0, 14), is:
AA1234567890as


 */        
    
  








Related examples in the same category

1.substr 'to-end-of-string' option
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