admin管理员组文章数量:1344973
I need regex to match an alphanumeric string exact 11 characters long but the value must contain at least both 1 character and 1 number.
Used a bination of Regex for alphanumeric with at least 1 number and 1 character
i.e. /^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/
and What is the regex to match an alphanumeric 6 character string?
i.e. ^[a-zA-Z0-9]{6,}$
by using OR (||) operator like this
//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
but it would be great if i get it in one regex.
I need regex to match an alphanumeric string exact 11 characters long but the value must contain at least both 1 character and 1 number.
Used a bination of Regex for alphanumeric with at least 1 number and 1 character
i.e. /^(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/
and What is the regex to match an alphanumeric 6 character string?
i.e. ^[a-zA-Z0-9]{6,}$
by using OR (||) operator like this
//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
but it would be great if i get it in one regex.
Share edited Jun 13, 2017 at 18:04 georg 215k56 gold badges322 silver badges400 bronze badges asked Jun 13, 2017 at 17:57 Zaveed AbbasiZaveed Abbasi 4461 gold badge13 silver badges35 bronze badges1 Answer
Reset to default 12You need to bine both and use {11}
for exact 11 characters match.
/^(?=.*\d)(?=.*[a-zA-Z])[a-zA-Z0-9]{11}$/
Where :
(?=.*\d)
assert that the position follows a digit at any position(where\d
is equivalent to[0-9]
).(?=.*[a-zA-Z])
assert that the position follows an alphabet at any position.[a-zA-Z0-9]{11}
matches only when the length is 11 characters and within the character class.^
and$
are start and end anchors which help to check whole string.
本文标签:
版权声明:本文标题:javascript - Regex for alphanumeric string with at least 1 number and 1 character and a fixed length of 11 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771337a2536180.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论