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.
我有一个文本框,但验证长度是否 < 1。但是,如果我使用键盘空格键并输入空格,则保持按钮检查的验证不起作用。请用正则表达式帮助检查这些空格
正则表达式^\s+$将匹配完全由一个或多个空格组成的任何字符串。查看此正则表达式教程以获取更多信息。
^\s+$
这将匹配一个空字符串或任意数量的空白字符:/^\s*$/
/^\s*$/