I would like to parse various numbers with spirit x3 into a string. I tried to do it like this, but it doesnt work.
typedef x3::rule<class int_parser_id, std::string> int_parser_type;
const int_parser_type int_parser = "int_parser";
auto const int_parser_def = x3::int32;
what can I do to parse a Int with the x3::int32 parser into a string?