2010-12-21 82 views
0

喜 首先對不起我的英語RegularExpressions刪除特定HTML標記

我需要刪除一個特定的HTML標籤不是所有標籤

這個我想在標籤去除

xxx 

<object data="/dictionary/flash/SpeakerApp16.swf" type="application/x-shockwave-flash" width=" 16" height="16" id="pronunciation"> <param name="movie" value="/dictionary/flash/SpeakerApp16.swf"><param name="flashvars" value="sound_name=http%3A%2F%2Fwww.gstatic.com%2Fdictionary%2Fstatic%2Fsounds%2Fde%2F0%2Fman.mp3"><param name="wmode" value="transparent"><a href="http://www.gstatic.com/dictionary/static/sounds/de/0/man.mp3"><img border="0" width="16" height="16" src="/dictionary/flash/SpeakerOffA16.png" alt="listen"></a> </object> 

yyy 

我想要結果xxx yyy

+0

http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags – 2010-12-21 20:26:37

回答

0

如果你確切知道標籤是什麼,非正則表達式的搜索和替換將會更快,更高效。你對標籤的形式瞭解多少?

此外,正則表達式& HTML是一件壞事。

+0

一個標籤通常有屬性,所以只是一個字符串替換可能是不夠的。 – 2010-12-21 20:28:15