带有双斜杠的preg_replace

时间:2013-12-08 18:39:45

标签: function replace preg-replace

我遇到preg_replace函数问题。

如何替换文字: \\文本\\ 至: 文字

我的代码是:

preg_replace("/\\/(.*?)/\\/","<s>\\1</s>", "\\test\\")

1 个答案:

答案 0 :(得分:0)

我测试了这个:

<?php
$str1 = "\\test\\";
echo "<textarea style=\"width: 700px; height: 300px;\">"
  . preg_replace('/\\\\([^\\\]+)\\\\/', "<s>\\1</s>", $str1)
  . "</textarea>";
?>