我正在尝试匹配字符串,
应至少包含一个非空格字符
字符串长度应为 1 到 8 个字符,
我想知道为什么当我想限制为 1 到 8 个字符时下面的代码不起作用。
.*\S.{1,8}
应该匹配,
abcdefge
abcdefg - first character is space, Any number of spaces can be there, but atleaset one non space character should be there
a
不应该匹配,
- All spaces
abcdefghijklm - Exeeds more then 8 characters
谢谢