检测以数字开头的字符串

时间:2013-10-27 20:08:01

标签: php regex

我探索了互联网,但找不到一个例子。 我对理解正则表达式有很多疑问 我想要一个正则表达式条件来检查String是否以Numbers开头。
我怎么能用PHP做到这一点?

提前致谢

1 个答案:

答案 0 :(得分:1)

preg_match()

<?php

$string = "42foobar";

if (preg_match("/^\d/", $string)) {
    echo "string match was found.";
} else {
    echo "string match was not found.";
}
?>
  • ^表示字符串的开头
  • \d表示数字