标签: php
我有以下字符串格式:“$ 3.20”或“$ 10.34”。我想用preg_match验证字符串是否是这种格式。
有什么建议值得赞赏吗?
答案 0 :(得分:0)
尝试这种模式:
if (preg_match('/\$\s[\d]+\.[\d]{2}/', $text)){ //do something }