3
我正試圖找出正確的方法來解析從istream
使用x3。較老的文檔是指multi_pass
的東西,我還可以使用它嗎?還是有其他方法來緩衝X3的流,以便它可以回溯?如何在Boost Spirit X3中進行「流」解析?
我正試圖找出正確的方法來解析從istream
使用x3。較老的文檔是指multi_pass
的東西,我還可以使用它嗎?還是有其他方法來緩衝X3的流,以便它可以回溯?如何在Boost Spirit X3中進行「流」解析?
你仍然可以使用它。只是包括
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <boost/spirit/home/x3.hpp>
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <iostream>
#include <sstream>
int main() {
std::istringstream iss("{ 123, 234, 345, 456, 567, 678, 789, 900, 1011 }");
boost::spirit::istream_iterator f(iss), l;
std::vector<int> values;
namespace x3 = boost::spirit::x3;
if (x3::phrase_parse(f, l, '{' >> (x3::int_ % ',') >> '}', x3::space, values)) {
std::cout << "Parse results:\n";
for (auto v : values) std::cout << v << " ";
} else
std::cout << "Parse failed\n";
}
打印
Parse results:
123 234 345 456 567 678 789 900 1011