我有类似的东西<code> <1> <2> </code>
,我想得到这个:<code> <1> <2> </code>
但我只想在<code></code>
标签内应用它,而不是在其他任何地方。
我已经有了这个:
$txt = $this->input->post('field');
$patterns = array(
"other stuff to find", "/<code>.*(<).*<\/code>/m"
);
$replacements = array(
"other stuff to replace", "<"
);
$records = preg_replace($patterns,$replacements, $txt);
它成功替换了字符,但删除了包围的<code></code>
标签
任何帮助将不胜感激!谢谢