正则表达式的快速问题

时间:2011-08-10 22:02:58

标签: php

我无法剥离这段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>

1 个答案:

答案 0 :(得分:1)

这应该有用。

preg_match('#</h5>\s*</a>\s*(\w.+)\s*</div>#Uis', $data, $array);