现在我正在使用如何计算 reg-ex 中的字符长度
function CheckForAlphaRegName(theObj) {
if (theObj.value.match(/[^a-zA-Z-\'\s]+/)) {
theObj.value = theObj.value.replace(/[^a-zA-Z-\'\s]+/g, "");
}
if (theObj.value.match(/[-\'\s]+/).length > 1) {
theObj.value.match(/[-\'\s]+/g, "");
}