Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的正则表达式。但它不接受空白。如何修改它,使其接受中间或结尾的空格,但不应只接受空格。
/^[a-zA-Z]+[a-zA-Z0-9._-]+$/'
以下内容应该适合您。它将在第一个字符之后允许空格。 ^[a-zA-Z]+[a-zA-Z0-9\s._-]+$
^[a-zA-Z]+[a-zA-Z0-9\s._-]+$
是的,我得到了解决方案。我以以下方式修改了正则表达式,这工作正常。总之感谢 :)
/^[a-zA-Z]+[a-z A-Z0-9._-]+$/'