文章

44

粉丝

18

获赞

338

访问

26.1k

头像
字符串替换 题解:find + replace详细版
P2011
发布于2024年6月28日 20:55
阅读数 598

字符串函数处理比较简单,双指针容易错,find(字符串)是返回该字符串在原字符串的下标,replace()的三个参数是需要替换的下标、被替换字符串的长度、新的字符串

  1. string& replace (size_t pos, size_t len, const string& str);
  • 1

参数说明:

  • pos : 起始位置(即要替换的子串在原字符串中的起始位置)。
  • len : 要被替换的子串的长度。
  • str : 替换后的新字符串。
    1. #include <iostream>
    2. #include <string>
    3. using namespace std;
    4. int main(){
    5. string s;
    6. getline(cin,s);
    7. string old = "tantan";
    8. string news = "baibai";
    9. // 将其转为小写
    10. for(int i = 0;i < s.size();i ++){
    11. if(s[i] >= 'A' && s[i] <= 'Z'){
    12. s[i] = s[i] + 32;
    13. }
    14. }
    15. int index = s.find(old);
    16. if(index == -1){
    17. cout << "not find" << endl;
    18. return 0;
    19. }else{
    20. while(index != -1){
    21. s.replace(index,6,news);
    22. index = s.find(old);
    23. }
    24. }
    25. cout << s << endl;
    26. return 0;
    27. }

     

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发