如何使用正则表达式和提升转换迭代器标记和转换 c 字符串

How to tokenize and transform a c-string using regex and boost transform iterators?

本文关键字:转换 字符串 迭代器 何使用 正则表达式      更新时间:2023-10-16

我尝试用分号分隔的数字标记化c字符串并将它们存储在向量中。这是我的简化方法

auto string = "1;2;3;4";
const std::regex separator {";"};
std::cregex_token_iterator t_begin{string, string + strlen(string), separator, -1};
std::cregex_token_iterator t_end{};
auto begin = boost::make_transform_iterator(t_begin, atoi);
auto end = boost::make_transform_iterator(t_end, atoi);
std::vector<int> result{begin, end};

我收到错误消息:

error: no type named 'type' in 'boost::mpl::eval_if<boost::is_same<boost::iterators::use_default, boost::iterators::use_default>, boost::result_of<const int(std::sub_match<const char*>&)>, boost::mpl::identity<boost::iterator::use_default> >::f_{aka struct boost::result_of<const int(const std::sub_match<const char*>&)>}'
typedef typename f_::type type;

我不明白。

std::cregex_token_iterator 在取消引用时返回相应类型的std::sub_match。在这种情况下,它是一对const char*指针,因此可能的解决方案如下:

auto f = [] (std::csub_match m) { return std::atoi(m.first); };
auto begin = boost::make_transform_iterator(t_begin, f);     
auto end = boost::make_transform_iterator(t_end, f);

演示