当前位置:   article > 正文

C++ string类型字符串添加新的字符或字符串_c++字符串添加字符

c++字符串添加字符

1. +

str = str + 'a';
str = str + "abc";
  • 1
  • 2

直接对str操作,效率高:

str += 'a';
str += "abc";
  • 1
  • 2

2. push_back()函数

str.push_back('y');
  • 1

注意:该函数只能在字符串后面添加字符

3. append()函数

  1. 直接添加

    string s1="He is";
    s1.append(" Tom");
    
    • 1
    • 2
  2. 添加字符串的字串

    string s2="Where is Jacky";
    s1.append(s2,8,6);
    
    • 1
    • 2
  3. 迭代器

    string s3="so strong";
    s1.append(s3.begin()+2,s3.end());
    
    • 1
    • 2
  4. 添加字符串的前n个字符

    s1.append(s2,3);
    
    • 1
  5. 添加n个重复字符

    s1.append(7,'y');
    
    • 1

参考:

https://blog.csdn.net/weixin_34132725/article/details/109293031

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/736046
推荐阅读
相关标签
  

闽ICP备14008679号