我无法剥离这段HTML:
title="External Link" alt="External Link"/></h5>
</a>
This text is needed without the spaces..
</div>
以下是我尝试的一般方法:
$array = array();
preg_match( '/<\/h5>(.*?)
/si', $data, $array ) ;
我似乎无法破解它。
任何帮助将不胜感激,
谢谢!
P.s 该文字本身也可能包含html标签,例如<em> or <strong>
答案 0 :(得分:1)
这应该有用。
preg_match('#</h5>\s*</a>\s*(\w.+)\s*</div>#Uis', $data, $array);