黑马程序员技术交流社区

标题: 过滤特殊字符 [打印本页]

作者: 朱婵    时间: 2014-2-20 12:49
标题: 过滤特殊字符
  1. public static String StringFilter(String str) throws PatternSyntaxException {
  2.                 // 只允许字母和数字        
  3.                 // String   regEx  =  "[^a-zA-Z0-9]";                     
  4.                 // 清除掉所有特殊字符   
  5.                 String regEx = "[`~!@#$%^&*+=|{}':;',\\[\\].<>/?~!@#¥%……&*——+|{}【】‘;:”“’。,、?]";
  6.                 Pattern p = Pattern.compile(regEx);
  7.                 Matcher m = p.matcher(str);
  8.                 return m.replaceAll("").trim();
  9.         }
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2