-2

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

任何建议表示赞赏?

4

1 回答 1

0

试试这个模式:

if (preg_match('/\$\s[\d]+\.[\d]{2}/', $text)){
    //do something
}
于 2013-07-24T21:01:55.597 回答