Preg_match有正则表达式吗?

时间:2011-09-15 03:20:23

标签: php preg-match

我试图捕获名称以“price”开头并以数字0-9结尾的已发布变量,并将数字保存在变量$matches中。由于某种原因,我的代码没有抓住它,所以显然我的语法是关闭的。继承我的代码..

elseif (preg_match('price/[1-9]/', $field_name, $matches)) {

1 个答案:

答案 0 :(得分:1)

preg_match('/^price([0-9])$/', $field_name, $matches)

$matches[1]将为您提供电话号码。