1
嗨爲什麼這個reg.exp不工作? 'TEST'應該替換爲XXX嗎?PHP正則表達式(替換文本)
<?php
$Rules = array ('@<script[^>]*?>.*?</script>@si',
'@(TEST);[email protected]');
$Replace = array ('',
'XXX'
);
$data ="this is a TEST string";
$data = preg_replace($Rules, $Replace,$data);
echo $data;
?>
對此類任務使用'str_replace'。它是快速 – diEcho
謝謝,但需要使用reg.expr,因爲這是功能的快照 – user914584