subster函数的详细说明
功能
substr是C++语言函数,主要功能是复制子字符串,要求从指定位置开始,并具有指定的长度。
如果没有指定长度_Count或_Count+_Off超出了源字符串的长度,则子字符串将延续到源字符串的结尾。
substr()适用对象
substr()函数,用于string类型
变量声明方式
string str;
操作方式
str.substr(startnum, len);
其中 startnum 是起始字符的序号,len是从起始字符开始截取的字符串长度
那么,若要截取str中序号m到n间(其中不包括n)的子字符串则为:
str.substr(m, n-m);
示例
#include<iostream>
#include<cstring>
using namespace std;int main()
{
string s="123456abc123";
cout<<s.substr(6,3);
}