PHP preg_替换反斜杠\

发布于 2024-08-20 11:36:16 字数 48 浏览 4 评论 0原文

非常简单的问题:如何preg_replace反斜杠字符?

Really simple question: how can I preg_replace the backslash character?

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

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

发布评论

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

评论(7

离去的眼神 2024-08-27 11:36:16

是的,但你需要逃避它。在正则表达式中使用它时,使用 \\ 在替换中使用它,使用 \\\\ (这将变成 \\将被解释为单个反斜杠)。

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).

倾`听者〃 2024-08-27 11:36:16

您需要转义反斜杠: \\

来自 关于 preg_replace 的手册:

要在替换中使用反斜杠,必须将其加倍("\\\\" PHP 字符串)。

或者,使用 preg_quote 来为 preg_* 操作准备一个字符串。

You need to escape the backslash: \\

From the manual on preg_replace:

To use backslash in replacement, it must be doubled ("\\\\" PHP string).

Alternatively, use preg_quote to prepare a string for a preg_* operation.

天荒地未老 2024-08-27 11:36:16

你可以尝试

$a = "\\\\";
$a = preg_replace('/\\\\/','/',$a);

输出:

'//'

You could try

$a = "\\\\";
$a = preg_replace('/\\\\/','/',$a);

Output:

'//'
所谓喜欢 2024-08-27 11:36:16

此代码对我有用

  $text = "replace \ backslash";
  $rep = "";
  $replace_text = preg_replace( '/\\\\{1}/',$rep,$text);
  echo $replace_text;

输出:

替换反斜杠

This code works for me

  $text = "replace \ backslash";
  $rep = "";
  $replace_text = preg_replace( '/\\\\{1}/',$rep,$text);
  echo $replace_text;

Output :

replace backslash

能怎样 2024-08-27 11:36:16

使用 \ 转义 \\\

preg_replace('/\\/', 'REMOVED BACKSLASH', 'sometest\othertest');

Escape \ with \: \\

preg_replace('/\\/', 'REMOVED BACKSLASH', 'sometest\othertest');
凉世弥音 2024-08-27 11:36:16

使用两次,例如 \\

Use it twice eg \\

望她远 2024-08-27 11:36:16

如果您想从文本中删除反斜杠并且不想再看到它。然后使用这个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)

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