string substr(size_type _Off = 0,size_type _Count = npos) const;
_Off:所需的子字符串的起始位置。字符串中第一个字符的索引为 0,默认值为0。
_Count:复制的字符数目。 返回值:一个子字符串,从其指定的位置开始。
string substr(size_type _Off = 0) const;//从_Off位置开始获取后面的字符串,字符串中第一个字符的索引为 0。
示例:
string str(“helloworld”);
string strSub = str.substr(0, 5);
string s = str.substr (pos);