如何使用正则表达式和增强变换迭代器标记和变换 c 字符串?

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

我尝试用分号分隔的数字标记一个 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, when dereferenced, returns a 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);

DEMO