标签: c++ parsing boost-spirit lexer
是否可以连接token_def<>及其关联的正则表达式,以便它可以解析其中包含多个值的标记?例如1234:hello_world。 1234和hello_world的位置。或者我应该在qi::rule中做这类事情?
token_def<>
1234:hello_world
1234
hello_world
qi::rule
我非常想到答案将是令牌应该是原子的,即使有办法做到这一点,也是不可取的:D