|
@@ -4,7 +4,7 @@ export default {
|
|
|
az09_: /^[a-z0-9_]+$/,
|
|
|
emailSimple: /^[\x00-\x7F]+@[a-z0-9]+\.[a-z0-9]+(\.[a-z0-9]+)?$/,
|
|
|
ascii: /^[\x00-\x7F]+$/,
|
|
|
- password: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]/,
|
|
|
+ password: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~])[A-Za-z\d!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~]/,
|
|
|
custom: regex => {
|
|
|
return new RegExp(`^[${regex}]+$`);
|
|
|
}
|