2011-12-16 51 views
0

可能重複提取一個div的內容:
regex php: find everything in div如何從一個字符串中使用至REGx

我有串狀

$str= 'hello asd asd 
<div class="name">Sunil</div>' asdasd 
asdasdasd 
asdasdasdasd; 

我想獲得的div名稱的內容。 (意思是我想得到Sunil)使用reg ex ..

請幫助我。

+0

這不是一個PHP字符串。(流離失所引號) – konsolenfreddy 2011-12-16 07:00:24

+0

如果`div`的內容可能包含標記(像其他`div`),那麼這將是不可能用正則表達式。是這種情況還是內容總是沒有標記的文字?此外,你的一段代碼看起來不正確。 – lkuty 2011-12-16 07:09:57

回答

0

你不能使用regex來遞歸搜索,因爲它沒有辦法表達遞歸。這就是人們編寫解析器的原因。

我相信你正在尋找的是http://simplehtmldom.sourceforge.net/

相關問題