如何从以下HTML代码中找出变量模式?
<element aria-label="like this video along with 3,358,980 other people" >...<element>
我想从上面的行找到数字。
答案 0 :(得分:0)
如果感兴趣的行总是“某些文字** number_of_interest **更多文字”,那么你可以将字符串拆分为双星号**。
split_string = "this is the number **3,444,333** I need".split('**')
number_of_interest = split_string[1]
答案 1 :(得分:0)
在这种情况下,我认为你想要一个简单的正则表达式。只需查找一串数字和可选的逗号:
$content
答案 2 :(得分:0)
这严格适用于具有可选项的整数非小数小数 千分离器。
\d+(?:,\d{3})*