0

我尝试用分号分隔的数字标记一个 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;

我不明白。

4

1 回答 1

1

std::cregex_token_iterator,当取消引用时,返回std::sub_match相应类型的 a。在这种情况下,它是一对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);

演示

于 2016-06-01T11:02:24.407 回答