词法分析中的字符消耗
如果我有如下子规则:
.. (~']' ~']')* ...
它只会匹配偶数个字符吗?
If I have a subrule like the following:
.. (~']' ~']')* ...
will it only match an even number of characters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(假设点不是元字符)
不完全是,它将匹配零,或偶数个字符。
编辑
要匹配引用块,请执行以下操作:
假设
[[ some text here ]]
是引用块。(Assuming the dots are not meant as meta characters)
Not quite, it will match zero, or an even number of characters.
EDIT
To match a quote block, do something like this:
Assuming
[[ some text here ]]
is a quote block.