如何使用preg_match从网站中提取特定句子?

时间:2013-11-17 20:40:51

标签: php html

我如何使用preg_match从网站中提取句子?

file_get_contents('http://link.com');
preg_match('/\Name of the day is\/', $page, $matches);

我想只提取包含“当天的名字”的句子并显示该句子。

1 个答案:

答案 0 :(得分:0)

$page = file_get_contents('http://link.com');
$regex = '/Name of the day is (\w+)/'
preg_match($regex, $page, $matches);

如果需要,请参阅http://www.phpliveregex.com/p/24q进行调整。