博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HOW TO REPLACE ALL OCCURRENCES OF A CHARACTER IN A STD::STRING
阅读量:5943 次
发布时间:2019-06-19

本文共 1490 字,大约阅读时间需要 4 分钟。

From:

 

This can be done using the standard library or Boost. The advantage of using Boost is that you get Boost ranges, which mean that you don’t need to specify the beginning and end of the string.

With both libraries, the replacement can be made on the original string or a copy.

  1. Use std::replace()
  2. Use std::replace_copy
  3. Use boost_replace_all
  4. Use boost_replace_all_copy

Method 1: Use std::replace()

1

2

3

4

5

6

7

8

9

10

#include <iostream>

#include <string>

#include <algorithm>

 

int main()

{

    std::string str("Quick+brown+fox");

    std::replace(str.begin(), str.end(), '+', ' ');

    std::cout << str << "\n";

}

Method 2: Use std::replace_copy

1

2

3

4

5

6

7

8

9

10

11

#include <iostream>

#include <string>

#include <algorithm>

 

int main()

{

    std::string str1("Quick+brown+fox");

    std::string str2(str1.size(), '\0');

    std::replace_copy(str1.begin(), str1.end(), str2.begin(), '+', ' ');

    std::cout << str2 << "\n";

}

Method 3: Use boost_replace_all

1

2

3

4

5

6

7

8

9

10

#include <iostream>

#include <string>

#include <boost/algorithm/string/replace.hpp>

 

int main()

{

    std::string str("Quick+brown+fox");

    boost::replace_all(str, "+", " ");

    std::cout << str << "\n";

}

Method 4: Use boost_replace_all_copy

1

2

3

4

5

6

7

8

9

10

#include <iostream>

#include <string>

#include <boost/algorithm/string/replace.hpp>

 

int main()

{

    std::string str1("Quick+brown+fox");

    std::string str2 =  boost::replace_all_copy(str1, "+", " ");

    std::cout << str2 << "\n";

}

转载于:https://www.cnblogs.com/time-is-life/p/9077945.html

你可能感兴趣的文章
mysql出现unblock with 'mysqladmin flush-hosts'
查看>>
oracle exp/imp命令详解
查看>>
开发安全的 API 所需要核对的清单
查看>>
Mycat源码中的单例模式
查看>>
WPF Dispatcher介绍
查看>>
fiddler展示serverIP方法
查看>>
C语言中的随意跳转
查看>>
WPF中如何将ListViewItem双击事件绑定到Command
查看>>
《聚散两依依》
查看>>
小tips:你不知道的 npm init
查看>>
Mac笔记本中是用Idea开发工具在Java项目中调用python脚本遇到的环境变量问题解决...
查看>>
Jmeter也能IP欺骗!
查看>>
Rust 阴阳谜题,及纯基于代码的分析与化简
查看>>
ASP.NET Core的身份认证框架IdentityServer4(4)- 支持的规范
查看>>
(原創) array可以使用reference方式傳進function嗎? (C/C++)
查看>>
170多个Ionic Framework学习资源(转载)
查看>>
Azure:不能把同一个certificate同时用于Azure Management和RDP
查看>>
Directx11教程(15) D3D11管线(4)
查看>>
Microsoft Excel软件打开文件出现文件的格式与文件扩展名指定格式不一致?
查看>>
ios ble 参考
查看>>