gpt4 book ai didi

c++ - 正则表达式替换为c++ 11中的回调?

转载 作者:IT老高 更新时间:2023-10-28 22:01:36 29 4
gpt4 key购买 nike

是否有正则表达式替换功能,将匹配发送到用户函数,然后替换返回值:

这个方法我试过了,但是明显不行:

cout << regex_replace("my values are 9, 19", regex("\d+"), my_callback);

和功能:

std::string my_callback(std::string &m) {
int int_m = atoi(m.c_str());
return std::to_string(int_m + 1);
}

结果应该是:my values are 10, 20

我的意思是类似 php 的 preg_replace_callback 或 python 的 re.sub(pattern, callback, subject)

的工作模式

我的意思是最新的 4.9 gcc,它能够在没有提升的情况下进行正则表达式。

最佳答案

我想要这种功能,但不喜欢“使用增强”的答案。本杰明的答案的问题是它提供了所有的 token 。这意味着您不知道哪个标记是匹配的,并且它不允许您使用捕获组。这样做:

// clang++ -std=c++11 -stdlib=libc++ -o test test.cpp
#include <cstdlib>
#include <iostream>
#include <string>
#include <regex>

namespace std
{

template<class BidirIt, class Traits, class CharT, class UnaryFunction>
std::basic_string<CharT> regex_replace(BidirIt first, BidirIt last,
const std::basic_regex<CharT,Traits>& re, UnaryFunction f)
{
std::basic_string<CharT> s;

typename std::match_results<BidirIt>::difference_type
positionOfLastMatch = 0;
auto endOfLastMatch = first;

auto callback = [&](const std::match_results<BidirIt>& match)
{
auto positionOfThisMatch = match.position(0);
auto diff = positionOfThisMatch - positionOfLastMatch;

auto startOfThisMatch = endOfLastMatch;
std::advance(startOfThisMatch, diff);

s.append(endOfLastMatch, startOfThisMatch);
s.append(f(match));

auto lengthOfMatch = match.length(0);

positionOfLastMatch = positionOfThisMatch + lengthOfMatch;

endOfLastMatch = startOfThisMatch;
std::advance(endOfLastMatch, lengthOfMatch);
};

std::regex_iterator<BidirIt> begin(first, last, re), end;
std::for_each(begin, end, callback);

s.append(endOfLastMatch, last);

return s;
}

template<class Traits, class CharT, class UnaryFunction>
std::string regex_replace(const std::string& s,
const std::basic_regex<CharT,Traits>& re, UnaryFunction f)
{
return regex_replace(s.cbegin(), s.cend(), re, f);
}

} // namespace std

using namespace std;

std::string my_callback(const std::smatch& m) {
int int_m = atoi(m.str(0).c_str());
return std::to_string(int_m + 1);
}

int main(int argc, char *argv[])
{
cout << regex_replace("my values are 9, 19", regex("\\d+"),
my_callback) << endl;

cout << regex_replace("my values are 9, 19", regex("\\d+"),
[](const std::smatch& m){
int int_m = atoi(m.str(0).c_str());
return std::to_string(int_m + 1);
}
) << endl;

return 0;
}

关于c++ - 正则表达式替换为c++ 11中的回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22617209/

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