我需要正则表达式匹配长度为11个字符的字母数字字符串,但该值必须至少包含1个字符和1个数字。
使用了组合 Regex for alphanumeric with at least 1 number and 1 character
即。 /^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/
和What is the regex to match an alphanumeric 6 character string?
即。 ^[a-zA-Z0-9]{6,}$
使用这样的OR(||)运算符
//regex code
var str = "";
if ($.trim($("input[id$='txtBranchName']").val()) != "")
str = $.trim($("input[id$='txtBranchName']").val());
var reg_exp = /^(?:[0-9]+[a-z]|[a-z]+[0-9])[a-z0-9]*$/i; // /^[a-zA-Z0-9]{11,}$/;//^(\d)(?:\1+)?$/; // new RegExp('([0-9]){6}');
var reg_exp2 = /^[a-zA-Z0-9]{11,11}$/;
if (!reg_exp.test(str) || !reg_exp2.test(str)) {
$("span[id$='lblError']").css("color", "red");
$("span[id$='lblError']").html($("span[id$='lbl_PayeeInformation_IFSCNo']").html()).show();
$("input[id$='txtBranchName']").focus();
returned = false;
return false;
}
//end regex code
但如果我在一个正则表达式中获得它会很棒。