同时含有数字和英文字母
验证字符串,必须同时含有 数字 和 英文字母。
语法
import { nlBothReg } from 'warbler-js';const result = nlBothReg(value);
参数
value(String) : 待验证字符串。
返回值
Boolean : 是否通过验证,true 通过验证, false 没有通过验证。
源码
const nlBothReg = (value) => {const reg = /^(?=.*[a-zA-Z])(?=.*\d).+$/;return reg.test(value);};
例子
import { nlBothReg } from 'warbler-js';const result1 = nlBothReg('1')const result2 = nlBothReg('aa')const result3 = nlBothReg('3aa')console.log(result1) // falseconsole.log(result2) // falseconsole.log(result3) // true
