(1)正则表达式 \w{8,10}字符串“abcd1234_abcd”可以验证通过吗?(2)String regex="\w{5}";System.out.println("abcdefg".matches(regex));结果是什么?(1)和(2)有什么区别?