开发者

PHP regex to check a string

开发者 https://www.devze.com 2023-01-15 00:14 出处:网络
I am looking for a PHP regex to check a string is: 4 characters long the 1st character is开发者_开发技巧 A-Z (capitalized alphabet)

I am looking for a PHP regex to check a string is:

  • 4 characters long
  • the 1st character is开发者_开发技巧 A-Z (capitalized alphabet)
  • the 2nd to 4th characters are numbers (0-9)

A good example is: A123

Thanks!


^[A-Z][0-9]{3}$

Explanation:

^         # start of string
[A-Z]     # one character, A-Z
[0-9]{3}  # three characters, 0-9
$         # end of string
0

精彩评论

暂无评论...
验证码 换一张
取 消