JavaScript RegExp 匹配“%.*”,但不匹配“\%.*”

发布于 2024-12-11 07:29:56 字数 281 浏览 0 评论 0原文

我正在尝试改进 Alex Gorbatchev 的 SyntaxHighlighter 使用的 LaTeX 画笔。我在网上找到的画笔正确匹配以 % 开头的 LaTeX 注释,但是当转义 \% 时就出错了;即,它认为后者也是一条评论。

画笔中使用的正则表达式是%.*。我认为负向后看 (? 会起作用,但 JavaScript 不支持这个......还有其他想法吗?

谢谢 :)

I am trying to improve upon the LaTeX brush used by Alex Gorbatchev's SyntaxHighlighter. The brush I found online correctly matches LaTeX comments, which start with %, but gets it wrong when it is escaped \%; i.e., it thinks the latter is also a comment.

The RegExp used in the brush is %.*. I figured that a negative lookbehind (?<!\\)%.* would work, but JavaScript doesn't support this... Any other ideas?

Thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑶笙 2024-12-18 07:29:56

我想你可以使用这个 ([^\\]|^)%.* 说它不是 \ 或者它是行的开头

i guess you could use this ([^\\]|^)%.* saying either its not \ or it is start of line

江南月 2024-12-18 07:29:56

您是否尝试

([^\\]|^)%.*

过匹配字符串的开头或非 \ 字符...?

Have you tried

([^\\]|^)%.*

To match the start of the string or a non \ character...?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文