gpt4 book ai didi

C++:寻找一种简洁的解决方案,用特定字符替换 std::string 中的一组字符

转载 作者:太空狗 更新时间:2023-10-29 23:21:59 25 4
gpt4 key购买 nike

假设我有以下内容:

std::string some_string = "2009-06-27 17:44:59.027";

问题是:给出将 some_string 中所有“-”和“:”实例替换为空格的代码,即“”

我正在寻找一个简单的衬垫(如果可能的话)

可以使用Boost。

最佳答案

replace_if( some_string.begin(), some_string.end(), boost::bind( ispunct<char>, _1, locale() ), ' ' );

一行而不是 n^2 运行时间或调用正则表达式引擎 ;v) ,尽管为此需要提升有点难过。

关于C++:寻找一种简洁的解决方案,用特定字符替换 std::string 中的一组字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1269352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com