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

C++ Strings(字符串) 成员 replace():替换字符

 
    发布时间:2014-1-19  


    本文导语: C++ Strings(字符串) 成员 replace():替换字符 替换(replace) 语法: basic_string &replace( size_type index, size_type num, const basic_string &str ); basic_string &replace( size_type index1, size_type num1, const basic_string &str, size_type index2, size_type num2 ); basic_...

c++ strings(字符串) 成员 replace():替换字符

替换(replace)

语法:

  basic_string &replace;( size_type index, size_type num, const basic_string &str; );
  basic_string &replace;( size_type index1, size_type num1, const basic_string &str;, size_type index2,
  size_type num2 );
  basic_string &replace;( size_type index, size_type num, const char *str );
  basic_string &replace;( size_type index, size_type num1, const char *str, size_type num2 );
  basic_string &replace;( size_type index, size_type num1, size_type num2, char ch );
  basic_string &replace;( iterator start, iterator end, const basic_string &str; );
  basic_string &replace;( iterator start, iterator end, const char *str );
  basic_string &replace;( iterator start, iterator end, const char *str, size_type num );
  basic_string &replace;( iterator start, iterator end, size_type num, char ch );

replace()函数:

  • str中的num个字符替换本字符串中的字符,从index开始
  • 用str中的num2个字符(从index2开始)替换本字符串中的字符,从index1开始,最多num1个字符
  • 用str中的num个字符(从index开始)替换本字符串中的字符
  • 用str中的num2个字符(从index2开始)替换本字符串中的字符,从index1开始,num1个字符
  • 用num2个ch字符替换本字符串中的字符,从index开始
  • 用str中的字符替换本字符串中的字符,迭代器start和end指示范围
  • 用str中的num个字符替换本字符串中的内容,迭代器start和end指示范围,
  • 用num个ch字符替换本字符串中的内容,迭代器start和end指示范围.
例如,以下代码显示字符串"they say he carved it himself...find your soul-mate, homer."
    string s = "they say he carved it himself...from a bigger spoon";
    string s2 = "find your soul-mate, homer.";

    s.replace( 32, s2.length(), s2 );

    cout << s << endl;
  
相关主题:
insert()
  • 本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载,整理或搜集自网络.欢迎任何形式的转载,转载请注明出处.
    转载请注明:文章转载自:[169IT-IT技术资讯]
    本文标题:C++ Strings(字符串) 成员 replace():替换字符
相关文章推荐:


站内导航:


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

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

浙ICP备11055608号-3