码迷,mamicode.com
首页 > 其他好文 > 详细

正则表达式替换报表名称中的特殊字符

时间:2016-11-09 11:39:12      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:正则表达   替换   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!