使用“$”在替换文本/转义它(正则表达式模式)
我的问题不是一般的 RegEx,而是关于打开 RegEx 的 PhpStorm 的搜索替换功能。
我使用 PhpStorm,并且想在替换文本中使用美元符号。
但是,当我使用正则表达式模式执行此操作时,$ 就成为用于识别反向引用的特殊字符。
所以我必须逃避它。
但是 \$ 和 $$ 都不被 PhpStorm 接受。
如何在正则表达式模式下转义 $?
my question is not about RegEx in general but about PhpStorm's search-replace-functionality with RegEx switched on.
I use PhpStorm and I want to use the dollar-sign in the replacing text.
But when I do that using RegEx mode then $ becomes the special char for identifying back references.
So I have to escape it.
But neither \$ nor $$ is accepted by PhpStorm.
How do I escape $ in RegEx-mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
\\$
来替换文本。搜索 $ 是通过
\$
完成的。you have to use
\\$
for the replacing text.searching for $ is done with
\$
.