标签: java regex
此字符串包含空格,后跟DOT(.),然后是一些字符。那么为什么正则表达式会返回false?
.
String s=" .fds"; System.out.println(Pattern.matches("\\S+", s));