从IMDb获取人的身高

时间:2012-07-26 23:04:35

标签: php regex imdb

我正在尝试从IMDb获取人体高度,但它的行包含#,表示PHP中的注释(例如# The comment as follows)。以下是IMDb源代码的样子:

<h4 class="inline">Height:</h4>
5' 7&#34; (1.70 m)

这是我尝试的正则表达式:

<h4 class="inline">Height:</h4>\n([0-9' &#;(.)m]+)

我该怎么做才能阻止它在#字符后对正则表达式的其余部分进行注释?

提前致谢!

修改

以下是将\添加到正则表达式的结果: enter image description here

1 个答案:

答案 0 :(得分:2)

我已经解决了我的问题,这就是答案:

/<h4 class="inline">Height:<\/h4>\n([0-9\' ]+)&#34; ([0-9. m()]+)/