C++ Strings(字符串) 成员 substr():返回某个子字符串
本文导语: C++ Strings(字符串) 成员 substr():返回某个子字符串
substr
语法:
basic_string substr( size_type index, size_type num = npos );
substr()返回本字符串的一个子串,从index开始,长num个字符。如果没有指定,将是默认值 string::npos。这样,subs...
c++ strings(字符串) 成员 substr():返回某个子字符串
substr
语法:
basic_string substr( size_type index, size_type num = npos );
|
substr()返回本字符串的一个子串,从index开始,长num个字符。如果没有指定,将是默认值 string::npos。这样,substr()函数将简单的返回从index开始的剩余的字符串。
例如:
string s("what we have here is a failure to communicate");
string sub = s.substr(21);
cout << "the original string is " << s << endl;
cout << "the substring is " << sub << endl;
显示:
the original string is what we have here is a failure to communicate
the substring is a failure to communicate