我在xml文件中有<a>
標籤。我想剝離<a>
標籤。
如何在xml文件中剝離<a>標籤?
例如:
<test>This is a line with <a name="idp173968"></a> tags in it</test>
我不能做str_replace
更換標籤,因爲標籤<a>
屬性是不同的。
我想:
preg_replace("/<a[^>]+\>/i", "", $content);
如果標籤的結構是這樣<a name="idp173968"/>
,它工作正常。
那麼,如何去除標籤在我的情況?
預期輸出:
<test>This is a line with tags in it</test>
[RegEx match open tags but XHTML self-contained tags](http://support.microsoft.com/kb/1732348/regex-match-open-tags-except-xhtml-self-contained-標籤) – Mureinik