Consider the following parser:
#include <assert.h>
#include <iostream>
#include <boost/spirit/include/qi.hpp>
namespace qi = boost::spirit::qi;
struct command_toten_parser : qi::grammar<const char *, std::string()> {
command_toten_parser() : command_toten_parser::base_type(r) {
r = *qi::blank >> *qi::graph >> *qi::blank;
}
qi::rule<const char *, std::string()> r;
};
int main(int argc, char *argv[]) {
command_toten_parser p;
std::string c, s(" asdf a1 a2 ");
const char *b = &*s.begin();
const char *e = &*s.end();
assert(qi::parse(b, e, p, c));
std::string rest(b, e);
assert(c == std::string("asdf"));
assert(rest == std::string("a1 a2 "));
return 0;
}
How to I change my parser such that part matched by *qi::blank
is not captured (and my assertions passes)