/** * 验证是否字符串包含空格 * * @param phone 需要验证的电话号码字符串 * @return 不包含返回true 包含返回false * @author 孙磊 * @version 1.0 * @time 2016-12-30 * @status 正常 */ public static boolean containSpace(String phone) { Pattern pattern = Pattern.compile("[0-9a-zA-Z\u4E00-\u9FA5]+"); Matcher matcher = pattern.matcher(phone); return matcher.matches(); }