标签:pause stream sys 字符 函数 system code substr函数 标准库
标准库的string有一个substr函数用来截取子字符串。一般使用时传入两个参数,第一个是开始的坐标(第一个字符是0),第二个是截取的长度。
#include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { string name("rockderia"); string firstname(name.substr(0,4)); cout << firstname << endl; system("pause"); }
输出结果 rock
标签:pause stream sys 字符 函数 system code substr函数 标准库
原文地址:http://www.cnblogs.com/AkazaAkari/p/6145186.html