当前位置:  编程语言>c/c++

C++ Strings(字符串) 成员 erase():删除字符

 
    发布时间:2014-1-19  


    本文导语: C++ Strings(字符串) 成员 erase():删除字符 删除(erase) 语法: iterator erase( iterator pos ); iterator erase( iterator start, iterator end ); basic_string &erase( size_type index = 0, size_type num = npos ); erase()函数可以: 删除pos指向的字符, 返回指向...

c++ strings(字符串) 成员 erase():删除字符

删除(erase)

语法:

  iterator erase( iterator pos );
  iterator erase( iterator start, iterator end );
  basic_string &erase;( size_type index = 0, size_type num = npos );

erase()函数可以:

  • 删除pos指向字符, 返回指向下一个字符的迭代器,
  • 删除从start到end的所有字符, 返回一个迭代器,指向被删除的最后一个字符的下一个位置
  • 删除从index索引开始的num个字符, 返回*this.
参数index num 有默认值, 这意味着erase()可以这样调用:只带有index以删除index后的所有字符,或者不带有任何参数以删除所有字符. 例如:
    string s("so, you like donuts, eh? well, have all the donuts in the world!");
    cout << "the original string is '" << s << "'" << endl;
  
    s.erase( 50, 14 );
    cout << "now the string is '" << s << "'" << endl;

    s.erase( 24 );
    cout << "now the string is '" << s << "'" << endl;

    s.erase();
    cout << "now the string is '" << s << "'" << endl;

将显示

    the original string is 'so, you like donuts, eh? well, have all the donuts in the world!'
    now the string is 'so, you like donuts, eh? well, have all the donuts'
    now the string is 'so, you like donuts, eh?'
    now the string is ''
  • 本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载,整理或搜集自网络.欢迎任何形式的转载,转载请注明出处.
    转载请注明:文章转载自:[169IT-IT技术资讯]
    本文标题:C++ Strings(字符串) 成员 erase():删除字符
相关文章推荐:


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3