這是我的代碼:的preg_replace需要幫助的表達
$string = '<a href="http://www.mysite.com/test" class="prevlink">« Previous</a><a href=\'http://www.mysite.com/test/\' class=\'page\'>1</a><span class=\'current\'>2</span><a href=\'http://www.mysite.com/test/page/3/\' class=\'page\'>3</a><a href=\'http://www.mysite.com/test/page/4/\' class=\'page\'>4</a><a href="http://www.mysite.com/test/page/3/" class="nextlink">Next »</a>';
$string = htmlspecialchars($string, ENT_COMPAT, 'UTF-8');
$string = preg_replace('@(<a).*?(nextlink)@s', '', $string);
echo $string;
我試圖刪除最後一個環節:
<a href="http://www.mysite.com/test/page/3/" class="nextlink">Next »</a>';
我的電流輸出:
">Next »</a>
它消除了一切從頭開始。 我希望它只能刪除strpos,這是可能的preg_replace和如何? 謝謝。
與NEXTLINK任何鏈接嘗試使用HTML(或XML)正則表達式可以是一個相當的交易。在你的情況下,你說要取代以....
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags – 2011-08-31 08:34:05
@George '$string = preg_replace('@(<a).*?(nextlink).*?(</a>)@s', '', $string);' The output is empty. Great idea, I think my prex statment is wrong. could you take a look. Thanks – Muazam