PHP preg_替换反斜杠\
非常简单的问题:如何preg_replace
反斜杠字符?
Really simple question: how can I preg_replace
the backslash character?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
非常简单的问题:如何preg_replace
反斜杠字符?
Really simple question: how can I preg_replace
the backslash character?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
是的,但你需要逃避它。在正则表达式中使用它时,使用
\\
在替换中使用它,使用\\\\
(这将变成\\
将被解释为单个反斜杠)。Yes, but you need to escape it. When using it in the regexp use
\\
to use it in the replacement, use\\\\
(that will turn into\\
that will be interpreted as a single backslash).您需要转义反斜杠:
\\
来自 关于
preg_replace
的手册:或者,使用
preg_quote
来为preg_*
操作准备一个字符串。You need to escape the backslash:
\\
From the manual on
preg_replace
:Alternatively, use
preg_quote
to prepare a string for apreg_*
operation.你可以尝试
输出:
You could try
Output:
此代码对我有用
输出:
替换反斜杠
This code works for me
Output :
replace backslash
使用
\
转义\
:\\
Escape
\
with\
:\\
使用两次,例如
\\
Use it twice eg
\\
如果您想从文本中删除反斜杠并且不想再看到它。然后使用这个php函数。但如果它是一个双反斜杠,它只会删除一个。
stripslashes ($string)
If you want to remove backslash from text and don't want to see it anymore. then use this php function. But if it is a double backslash it will only remove one.
stripslashes ($string)