#include using namespace boost::spirit; int main() { parse_info<> res = parse(" #", (*blank_p >> ch_p('#') >> *blank_p), nothing_p); return 0; }