码迷,mamicode.com
首页 > 其他好文 > 详细

substr

时间:2017-02-26 19:08:15      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:blog   iostream   end   .net   sub   默认   bst   string   using   

转自:http://blog.csdn.net/no_retreats/article/details/7853066

#include<string>
#include<iostream>
using namespace std;

main()
{
string s("12345asdf");
string a=s.substr(0,5);       //获得字符串s中 从第0位开始的长度为5的字符串//默认时的长度为从开始位置到尾
cout<<a<<endl;
}

输出结果为:

12345

substr

标签:blog   iostream   end   .net   sub   默认   bst   string   using   

原文地址:http://www.cnblogs.com/wuxiaotianC/p/6445244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!