gpt4 book ai didi

c++ - 有条件地替换字符串中的正则表达式匹配

转载 作者:IT老高 更新时间:2023-10-28 22:25:53 26 4
gpt4 key购买 nike

我正在尝试用不同的替换模式替换字符串中的某些模式。

例子:

string test = "test replacing \"these characters\"";

我想要做的是将所有 ' ' 替换为 '_' 并将所有其他非字母或数字字符替换为空字符串。我创建了以下正则表达式,它似乎可以正确标记,但我不确定如何(如果可能)使用 regex_replace 执行条件替换。

string test = "test replacing \"these characters\"";
regex reg("(\\s+)|(\\W+)");

替换后的预期结果是:

string result = "test_replacing_these_characters";

编辑:我不能使用 boost,这就是为什么我把它排除在标签之外。所以请不要回答包括提升。我必须用标准库来做这件事。可能是不同的正则表达式可以实现目标,或者我只是被困在做两次传球。

编辑2:在我原来的正则表达式时,我不记得 \w 中包含哪些字符,在查找之后我进一步简化了表达式。再次,目标是任何匹配\s+ 的东西都应该替换为 '_' 并且任何匹配\W+ 的东西都应该替换为空字符串。

最佳答案

c++ (0x, 11, tr1) 正则表达式do not really work (stackoverflow)在任何情况下(查找 phrase regex on this page 以获得 gcc),因此最好使用 use boost一阵子。

如果您的编译器支持所需的正则表达式,您可以尝试:

#include <string>
#include <iostream>
#include <regex>

using namespace std;

int main(int argc, char * argv[]) {
string test = "test replacing \"these characters\"";
regex reg("[^\\w]+");
test = regex_replace(test, reg, "_");
cout << test << endl;
}

以上在 Visual Studio 2012Rc 中有效。

编辑 1:要一次替换为 两个不同的字符串(取决于比赛),我认为这在这里行不通。在 Perl 中,这可以很容易地在评估的替换表达式中完成(/e 开关)。

因此,正如您已经怀疑的那样,您需要两次通行证:

 ...
string test = "test replacing \"these characters\"";
test = regex_replace(test, regex("\\s+"), "_");
test = regex_replace(test, regex("\\W+"), "");
...

编辑 2:

如果可以在 regex_replace 中使用 回调函数 tr(),那么您可以在此处修改替换,例如:

 string output = regex_replace(test, regex("\\s+|\\W+"), tr);

tr() 做替换工作:

 string tr(const smatch &m) { return m[0].str()[0] == ' ' ? "_" : ""; }

问题本来就解决了。不幸的是,在某些 C++11 正则表达式实现中没有这样的重载,但是 Boost has one 。以下内容适用于 boost 并使用一次传递:

...
#include <boost/regex.hpp>
using namespace boost;
...
string tr(const smatch &m) { return m[0].str()[0] == ' ' ? "_" : ""; }
...

string test = "test replacing \"these characters\"";
test = regex_replace(test, regex("\\s+|\\W+"), tr); // <= works in Boost
...

也许有一天这将适用于 C++11 或接下来的任何数字。

问候

rbo

关于c++ - 有条件地替换字符串中的正则表达式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11508798/

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