mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-09-29 07:10:37 -04:00
fix typo error
This commit is contained in:
parent
7b76a4a726
commit
2e863a4de0
@ -469,7 +469,7 @@
|
||||
* *整数*: `^-?\d+$`
|
||||
* *用户名*: `^[\w\d_.]{4,16}$`
|
||||
* *数字和英文字母*: `^[a-zA-Z0-9]*$`
|
||||
* *数字和应为字母和空格*: `^[a-zA-Z0-9 ]*$`
|
||||
* *数字和英文字母和空格*: `^[a-zA-Z0-9 ]*$`
|
||||
* *密码*: `^(?=^.{6,}$)((?=.*[A-Za-z0-9])(?=.*[A-Z])(?=.*[a-z]))^.*$`
|
||||
* *邮箱*: `^([a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4})*$`
|
||||
* *IP4 地址*: `^((?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))*$`
|
||||
|
Loading…
x
Reference in New Issue
Block a user