标签:
语法:
basic_string substr( size_type index, size_type num = npos );
substr()返回本字符串的一个子串,从index开始,长num个字符。如果没有指定,将是默认值 string::npos。这样,substr()函数将简单的返回从index开始的剩余的字符串。
C++常见函数(备忘录)
原文地址:http://www.cnblogs.com/yanliang12138/p/4691300.html