//中文替换为"" public String replaceChineseToNULL(String s){ String reg = "[\u4e00-\u9fa5]"; Pattern pat = Pattern.compile(reg); Matcher m=pat.matcher(s); return m.replaceAll(""); }
这样调用方法传递一个串会自动将串内中文替换为空 ""