我想从 html 文档的以下元标记中查找型号
<meta name="description" content="Model AB-1234. Model description here" />
我只想匹配型号(AB-1234
)。我已经尝试了几件事,我将在下面包括 2 个:
preg_match('/<meta name="description" content="\bmodel\b(.*)"/i', $html, $model);
这个返回AB-1234. Model description here
==================================================== =================================
preg_match('/<meta name="description" content="(.*)"/i', $html, $model);
而这个返回:Model AB-1234. Model description here
可能的一种方法是停在.
(点)处,但我不知道如何处理。
谢谢,