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.
38 lines
996 B
38 lines
996 B
5 years ago
|
/**
|
||
|
* Created by jiachenpan on 16/11/18.
|
||
|
*/
|
||
|
|
||
|
/* 合法uri*/
|
||
|
export function validateURL(textval) {
|
||
|
const urlregex = /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/
|
||
|
return urlregex.test(textval)
|
||
|
}
|
||
|
|
||
|
/* 小写字母*/
|
||
|
export function validateLowerCase(str) {
|
||
|
const reg = /^[a-z]+$/
|
||
|
return reg.test(str)
|
||
|
}
|
||
|
|
||
|
/* 大写字母*/
|
||
|
export function validateUpperCase(str) {
|
||
|
const reg = /^[A-Z]+$/
|
||
|
return reg.test(str)
|
||
|
}
|
||
|
|
||
|
/* 大小写字母*/
|
||
|
export function validatAlphabets(str) {
|
||
|
const reg = /^[A-Za-z]+$/
|
||
|
return reg.test(str)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 验证邮箱
|
||
|
* @param str
|
||
|
* @returns {boolean}
|
||
|
*/
|
||
|
export function validatEmail(str) {
|
||
|
const reg = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/
|
||
|
return reg.test(str)
|
||
|
}
|