-3

您好,我正在尝试从不同的 URL 获取产品的价格,我知道如何获取内容,但我不擅长编写正则表达式函数,有人可以帮我写一个吗?它应该匹配 $ 之后的任何数字,例如“$40”、“$40.95”和“$ 45”

谢谢

4

2 回答 2

1
$string = '
    Hi! This answer will cost you $10. 
    If you do not vote this answer up, it will cost you another in $1.23 or $ 2.45. 
    Be good and transfer me arround $12.45 bucks to my IBAN SI56 1234 4567 8901 234.
    Just joking, it is for free ;-)
';
preg_match_all('~(\$\h?\d+(\.\d+)?)~', $string, $matches);

echo "<pre>".print_r($matches[1],true)."</pre>";

这将输出:

Array
(
    [0] => $10
    [1] => $1.23
    [2] => $ 2.45
    [3] => $12.45
)
于 2012-09-25T20:28:38.867 回答
0

您可以使用以下内容:

/(\$[0-9]+(\.[0-9]+)?)/
于 2012-09-25T19:32:11.263 回答