c++中substr的用法

#include <iostream>
#include <string>
using namespace std;
int main()
{
    string s=("12345");
    string a=s.substr(2);
    cout<<a<<endl;
}

相当于从字符串第三位(包括第三位)开始重新组成字符串

输出内容:345

posted @ 2018-12-03 21:22  vincand  阅读(114)  评论(0)    收藏  举报