正则验证 是否为大写字母

关键字:matches

 String regex = "^[A-Z]+$";
 
 sha.matches(regex);

你可能感兴趣的:(java,正则,java)