gpt4 book ai didi

rust - 使用 Pest.rs 如何管理一行以 "\"结尾的多行语法?

转载 作者:行者123 更新时间:2023-12-04 15:02:31 30 4
gpt4 key购买 nike

bash 的一个常见用法是使用 \在行尾转义换行符,

If a \<newline> pair appears, and the backslash is not itself quoted, the \<newline> is treated as a line continuation (that is, it is removed from the input stream and effectively ignored).

这样

FOO \
BAR

是一样的,

FOO BAR

如何将此语法写入 pest.rs?请注意,这意味着 NEWLINE 在我的语法中很重要,我不能仅仅忽略它。

最佳答案

一种方法是设置你的

WHITESPACE = { ( " "* ~ "\\" ~ NEWLINE ~ " "* ) }

这使常规换行符保持重要,除非它们以 \ 为前缀。

关于rust - 使用 Pest.rs 如何管理一行以 "\"结尾的多行语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66730294/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com