basic_string::substr

复制最多字符的一些数量的子字符串从字符串的开头从指定的位置。

basic_string<CharType, Traits, Allocator> substr(
    size_type _Off = 0,
    size_type _Count = npos
) const;

参数

  • _Off
    将元素的索引在字符串的副本的位置,使用默认值0。

  • _Count
    要复制的字符数,如果存在)。

返回值

是字符串操作数开头元素的副本在该位置的子字符串对象由第一个参数指定了。

示例

// basic_string_substr.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;

   string  str1 ("Heterological paradoxes are persistent.");
   cout << "The original string str1 is: \n " << str1
        << endl << endl;

   basic_string <char> str2 = str1.substr ( 6 , 7 );
   cout << "The substring str1 copied is: " << str2
        << endl << endl;
   
   basic_string <char> str3 = str1.substr (  );
   cout << "The default substring str3 is: \n " << str3
        <<  "\n which is the entire original string." << endl;
}
  
  
  

要求

标头: <string>

命名空间: std

请参见

参考

basic_string Class