匹配字符串与preg_match

时间:2013-07-24 20:57:16

标签: php

我有以下字符串格式:“$ 3.20”或“$ 10.34”。我想用preg_match验证字符串是否是这种格式。

有什么建议值得赞赏吗?

1 个答案:

答案 0 :(得分:0)

尝试这种模式:

if (preg_match('/\$\s[\d]+\.[\d]{2}/', $text)){
    //do something
}