在文件中替换的正则表达式

发布于 2024-12-09 08:48:34 字数 176 浏览 0 评论 0原文

\ 后面没有 " 时,我必须替换文件中的 \

所以我制作了这个正则表达式来查找 SublimeText 的出现:

#\\^"# 但它不起作用

有人有想法吗?

谢谢

I have to replace \ in files when the \ is not followed by "

so I made this regex to find occurrences with SublimeText:

#\\^"# but it doesn't work

Do someone has an idea ?

thanks

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

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

发布评论

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

评论(2

两个我 2024-12-16 08:48:34

您不能使用 ^ 来否定符号。这仅适用于标有 [] 的组,表示您的意思相反。您可以使用前瞻表达式来定义下一个字符不能是引号:#\\(?!")#(如果在字符串中使用引号,请记住转义引号) !)

You can't use ^ to negate a symbol. That works only for groups marked with [] to say you mean the opposite. You can use a look-ahead expression to define that the next character may not be a quote: #\\(?!")# (Remember to escape the quote, if you use it in a string!)

ぽ尐不点ル 2024-12-16 08:48:34

您可以尝试使用以下正则表达式:

#[^\\]"#

You can try with following regex:

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