preg_match_all问题

时间:2010-05-12 09:24:30

标签: php regex preg-match

我使用preg_match_all并且需要在我的代码中获取所有href =“”标签,但我并不完全理解它的工作方式。

我有这个注册。进出口。 (/(<([\w]+)[^>]>)(.?)(</\2>)/)它取所有的html代码,我只需要所有的href标签。

我可以得到帮助:)

2 个答案:

答案 0 :(得分:1)

我不喜欢使用RegEx解析HTML,但无论如何:

$input_string = file_get_contents(
    "http://stackoverflow.com/questions/2817449/preg-match-all-problems/2817549"
);

preg_match_all(
    '@\\<a\\b[^\\>]+\\bhref\\s*=\\s*"([^"]*)"[^\\>]*\\>@i',
    $input_string,
    $matches
);

var_dump( $matches ); // inspect for useful information

预计所有href都包含在"内。否则将无效。

答案 1 :(得分:0)

<?
$html = '<a href="http://something.com" target="_blank">Test </a>';
if (preg_match('/href="([^"]*)"/i', $html , $regs))
{
   $result = $regs[1];
} else {
   $result = "No URL Found";
}
echo $result ;
?>