字符串
是返回true,否返回false
import { formTest } from "@pointcloud/pcloud-utils";
formTest.ValidatorPsw('12345678') // false;
formTest.ValidatorPsw('12345678a') // false;
formTest.ValidatorPsw('12345678a.') // true;
formTest.ValidatorPsw('12345678a.1') // true;
formTest.ValidatorPsw('12345678a.1.') // false;
Generated using TypeDoc
校验密码是否为8-20位数字、大小写字母、特殊符号组合