You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
224 B
9 lines
224 B
6 months ago
|
package utils
|
||
|
|
||
|
const (
|
||
|
RegPhoneNumber = `^1[3456789]\d{9}$`
|
||
|
RegEmailNumber = `^[a-zA-Z0-9._%+\-]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,}$`
|
||
|
RegNumberAndChar = `^\w+$`
|
||
|
RegVersionNumber = `^([1-9]\d|[1-9])(.([1-9]\d|\d)){2}$`
|
||
|
)
|