码迷,mamicode.com
首页 > 编程语言 > 详细

C++的string

时间:2018-12-24 23:40:10      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:返回值   string   字母   长度   substr   const   int   等于   iterator   

string中find()返回值是字母在母串中的位置(下标记录),如果没有找到,返回npos。
string的substr(pos=0, count=npos)返回字符串[pos, pos+count)

string& erase (size_t pos = 0, size_t len = npos); //如果是int类型的话,str.erase(pos)是从pos位置开始删除到最后,因为默认len=pos,等于字符串的长度.
character (2)
iterator erase (const_iterator p);//注意类型,const_iterator 类型时是删除指定的位置.

C++的string

标签:返回值   string   字母   长度   substr   const   int   等于   iterator   

原文地址:https://www.cnblogs.com/Stephen-Qin/p/10171407.html

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