gpt4 book ai didi

c++ - 用字符串中的修改版本替换字符

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:12:05 27 4
gpt4 key购买 nike

我想用正则表达式替换输入字符串中的以下字符(或 && 和 || 的子字符串)

+ - ! ( ) { } [ ] ^ " ~ * ? : \ && ||

如何在 std::regex 的构造中编写此请求?

例如如果我有

"(1+1):2"

我想输入:

"\(1\+1\)\:2"

最终代码看起来像这样:

  std::string s ("(1+1):2");
std::regex e ("???"); // what should I put here ?

std::cout << std::regex_replace (s,e,"\\$2"); // is this correct ?

最佳答案

您可以使用 std::regex_replace捕获:

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

using namespace std;

int main() {
regex regex_a("(\\+|-|!|\\(|\\)|\\{|\\}|\\[|\\]|\\^|\"|~|\\*|\\?|:|\\\\|&&|\\|\\|)");
cout << regex_replace("(1+1):2", regex_a, "\\$0") << endl;
}

这打印

$ ./a.out 
\(1\+1\)\:2

关于c++ - 用字符串中的修改版本替换字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39677887/

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