正则表达式= / ^([A-ZA-Z0-9 @_ \ S#。] +)$ /;我试过这个并没有工作
这样的东西可以帮到你吗?
// no spaces in the middle at all regexp=/^[ ]{,2}[^ ]+?[ ]{,2}$/ // no two spaces in the middle, one is ok regexp=/^[ ]{,2}[^ ]+?(?! )[^ ][ ]{,2}$/