1
我有一個preg_replace函數的問題。用雙斜槓preg_replace
如何替換文本: \\ \\文本到 : 文本
我的代碼是:
preg_replace("/\\/(.*?)/\\/","<s>\\1</s>", "\\test\\")
我有一個preg_replace函數的問題。用雙斜槓preg_replace
如何替換文本: \\ \\文本到 : 文本
我的代碼是:
preg_replace("/\\/(.*?)/\\/","<s>\\1</s>", "\\test\\")
我測試了這一點:
<?php
$str1 = "\\test\\";
echo "<textarea style=\"width: 700px; height: 300px;\">"
. preg_replace('/\\\\([^\\\]+)\\\\/', "<s>\\1</s>", $str1)
. "</textarea>";
?>
感謝你非常許多! – Knowledge