// 对不是必填属性的验证(手机号的验证)
export const matchPhone = (control: FormControl): { [key: string]: boolean } => {
if (control.value == null || '' === control.value) {
return null;
}
const tell = control.value;
if (!(/^1(3|4|5|7|8|9)\d{9}$/.test(tell))) {
return {nomatch: true};
} else {
return null;
// 这里一定是null
}
};
// 身份证正则校验
export const matchSfzh = (control: FormControl): { [key: string]: boolean } => {
const sfzh = control.value;
if (!(/(^\d{15}$)|(^\d{17}([0-9]|X)$)/.test(sfzh))) {
return {nomatch: true};
} else {
return null;
// 这里一定是null
}
};
// 数字正则校验
export const matchNumber = (control: FormControl): { [key: string]: boolean } => {
if (control.value == null || '' === control.value) {
return null;
}
const ex = control.value;
if (!(/^[0-9]*$/.test(ex))) {
return {nomatch: true};
} else {
return null;
// 这里一定是null
}
};
// 英文字母校验
export const matchWord = (control: FormControl): { [key: string]: boolean } => {
if (control.value == null || '' === control.value) {
return null;
}
const ex = control.value;
if (!(/^[A-Za-z]+$/.test(ex))) {
return {nomatch: true};
} else {
return null; // 这里一定是null
}
};
// 英文数字组合正则校验
export const matchNumberAndWord = (control: FormControl): { [key: string]: boolean } => {
if (control.value == null || '' === control.value) {
return null;
}
const ex = control.value;
if (!(/^[A-Za-z0-9]+$/.test(ex))) {
return {nomatch: true};
} else {
return null; // 这里一定是null
}
};