标签:正则表达 替换 ace string pattern div replace 表名 blog
// 表达式对象 Pattern p = Pattern. compile("[\\\\?\\*\\:\\[\\]\\/]"); // 创建 Matcher 对象 Matcher n = p.matcher(systemName); Matcher m = p.matcher(unitCodeName); // 替换 String sheetNameSystem = n.replaceAll( ""); String sheetNameUnit = m.replaceAll( "");
标签:正则表达 替换 ace string pattern div replace 表名 blog
原文地址:http://www.cnblogs.com/itworkers/p/6045997.html