- 判断字符串是否为全数字
/**
* 判断字符串是否是数字
* @param str
* @return
*/
public static boolean isInteger(String str) {
Pattern pattern = Pattern.compile("^[-\\+]?[\\d]*$");
return pattern.matcher(str).matches();
}
- 判断字符串是否为全中文
String str = "魔前一叩三千年回首凡尘不做仙";
boolean flag = str.matches("[\u4E00-\u9FA5]+");