本文共 302 字,大约阅读时间需要 1 分钟。
/** * 使用正则表达式来判断字符串中是否包含字母 * @param str 待检验的字符串 * @return 返回是否包含 * true: 包含字母 ;false 不包含字母 */ public boolean judgeContainsStr(String str) { String regex=".*[a-zA-Z]+.*"; Matcher m=Pattern.compile(regex).matcher(str); return m.matches(); }
转载地址:http://lsncx.baihongyu.com/