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

string的一些函数

时间:2014-10-28 19:24:07      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   sp   on   bs   amp   ad   size   

erase函数的原型如下:
(1)string& erase ( size_t pos = 0, size_t n = npos );
(2)iterator erase ( iterator position );
(3)iterator erase ( iterator first, iterator last );
也就是说有三种用法:
(1)erase(pos,n); 删除从pos开始的n个字符,比如erase(0,1)就是删除第一个字符
(2)erase(position);删除position处的一个字符(position是个string类型的迭代器)
(3)erase(first,last);删除从first到last之间的字符(first和last都是迭代器)

 

string find函数和find_first_of有什么区别:

差别在于:find 必须匹配完整的字符串,find_first_of只需要匹配部分

例子:string s = "abc";cout << s.find("ad") << endl; 将打印 string::npos 也就是找不到
cout << s.find_first_of("ad") << endl; 将打印0,也就是找到了,在第0个位置

string的一些函数

标签:style   io   os   sp   on   bs   amp   ad   size   

原文地址:http://www.cnblogs.com/ph829/p/4057387.html

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