私は学ぼうとしていますboost::spirit
。例として、一連の単語を解析してvector<string>
. 私はこれを試しました:
#include <boost/spirit/include/qi.hpp>
#include <boost/foreach.hpp>
namespace qi = boost::spirit::qi;
int main() {
std::vector<std::string> words;
std::string input = "this is a test";
bool result = qi::phrase_parse(
input.begin(), input.end(),
+(+qi::char_),
qi::space,
words);
BOOST_FOREACH(std::string str, words) {
std::cout << "'" << str << "'" << std::endl;
}
}
これにより、次の出力が得られます。
'thisisatest'
しかし、各単語が個別に一致する次の出力が必要でした:
'this'
'is'
'a'
'test'
qi::grammar
可能であれば、この単純なケースに対して独自のサブクラスを定義する必要は避けたいと思います。