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 中验证字符串的帮助。
我的字符串包含:
所有在一个条目,所以喜欢1234A12345。
1234A12345
在插入数据库之前,我需要确保/验证这一点。
有一个向导可以帮我吗?
这是一个非常简单的正则表达式:
/^\d{4}[a-zA-Z]\d{5}$/
如果您以前没有在 PHP 中使用过正则表达式。