带有 space 的 LastName、FirstName 的正则表达式
Regular expression for LastName, FirstName with space
我正在使用下面的 JS 以这样的姓氏、名字格式输入姓名 Clark, Michael
,现在我可能还需要允许这样的姓名 Tim Duncan, Vince Carter
,其中这些姓名有 space 介于两者之间。
function validateName(txtbox) {
var name = /^\w{1,20}\, \w{1,20}$/
var check = document.getElementById(txtbox);
if (check != null) {
if (check.value != "") {
if (!name.test(check.value)) {
alert('Please enter name in Last Name, First Name format');
document.getElementById(txtbox).focus();
return false;
}
else {
return true;
}
}
else if (name.test(check.value)) {
return true;
}
else if (check.value == "") {
return true;
}
}
}
有没有办法通过在同一个正则表达式中进行更改来实现这一点。非常感谢建议和帮助。
^[\w ]{1,20}\, [\w ]{1,20}$
这应该适合你。
也许这会符合您的期望。
/^\s*(\w{1,20} *[^,]*)+,\s+(\w{1,20}\s*)+$/
但是上面的正则表达式也接受名称前后的多个白色 space。如果你只想强制使用一种 space 字符格式,你应该使用这些正则表达式:
/^(\w{1,20} ?[^,]*)+, (\w{1,20}( [^$]|$))+$/
您可以使用 html5 模式..
<input type="text" title="Following format: FirstName LastName" pattern="^\s*([\w]{1,20}( |,)?)+\s*,\s+([\w]{1,20} *)+$" />
我正在使用下面的 JS 以这样的姓氏、名字格式输入姓名 Clark, Michael
,现在我可能还需要允许这样的姓名 Tim Duncan, Vince Carter
,其中这些姓名有 space 介于两者之间。
function validateName(txtbox) {
var name = /^\w{1,20}\, \w{1,20}$/
var check = document.getElementById(txtbox);
if (check != null) {
if (check.value != "") {
if (!name.test(check.value)) {
alert('Please enter name in Last Name, First Name format');
document.getElementById(txtbox).focus();
return false;
}
else {
return true;
}
}
else if (name.test(check.value)) {
return true;
}
else if (check.value == "") {
return true;
}
}
}
有没有办法通过在同一个正则表达式中进行更改来实现这一点。非常感谢建议和帮助。
^[\w ]{1,20}\, [\w ]{1,20}$
这应该适合你。
也许这会符合您的期望。
/^\s*(\w{1,20} *[^,]*)+,\s+(\w{1,20}\s*)+$/
但是上面的正则表达式也接受名称前后的多个白色 space。如果你只想强制使用一种 space 字符格式,你应该使用这些正则表达式:
/^(\w{1,20} ?[^,]*)+, (\w{1,20}( [^$]|$))+$/
您可以使用 html5 模式..
<input type="text" title="Following format: FirstName LastName" pattern="^\s*([\w]{1,20}( |,)?)+\s*,\s+([\w]{1,20} *)+$" />