1 2 3 4 5 6 7 8 9 |
|
输出结果为:12345
【更多】
0. 用途:一种构造string的方法
1. 形式:s.substr(pos, n)
2. 解释:返回一个string,包含s中从pos开始的n个字符的拷贝(pos的默认值是0,n的默认值是s.size() - pos,即不加参数会默认拷贝整个s)
3. 补充:若pos的值超过了string的大小,则substr函数会抛出一个out_of_range异常;若pos+n的值超过了string的大小,则substr会调整n的值,只拷贝到string的末尾
string GetUrlLastInfo(const string& sUrl)
{
int index = sUrl.rfind('/');
if (index != -1)
{
return sUrl.substr(index + 1, sUrl.length() - index - 1);
}
return "";
}