Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 PHP 中编写一个函数来检查具有允许模式的输入字符串?我的模式是这样的:
1-1341498217
第一部分是从 0 到 9 的一位整数,破折号后的第二部分是 10 位正整数。
谢谢。
preg_match("/\d-\d{10}/", $string);
?
preg_match("/^\d-[1-9]{10}$/", $string) //^--------------for positive digits
用这个preg_match("/^\d-[1-9]\d{9}$/", $string)
preg_match("/^\d-[1-9]\d{9}$/", $string)