C++ String 中的substr用法
substr 底层函数
使用方法
(1) substr(num);//返回从num脚标开始的所有字符,包括num角标对应的字符
(2) substr(a,b);//返回从a角标到b角标的所有字符,包括a,b脚标对应的字符
#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
#include
#include
#include
using namespace std;
int main()
{
string p = "asdfghjk";
string s(p);
string q(p);
string a = " 2";
cout << p.substr(0) << endl;
cout << p.substr(1) << endl;
cout << p.substr(2) << endl;
cout << s.substr(
共有 0 条评论