我正在尝试将 re2c 与使用迭代器对而不是空终止字符串定义的输入一起使用。
从手册:
YYCURSOR
[...]
On entry, YYCURSOR is assumed to point to the first character of the current token.
On exit, YYCURSOR will point to the first character of the following token.
最后一点意味着它正在尝试迭代结束。
是否有使 re2c 与迭代器一起工作的技巧?(除了不使用检查的迭代器。)