使用正则表达式替换报表名称中的特殊字符(推荐)
程序员文章站
2022-07-03 19:53:25
正则表达式,又称规则表达式。(英语:regular expression,在代码中常简写为regex、regexp或re),计算机科学的一个概念。正则表通常被用来检索、替换...
正则表达式,又称规则表达式。(英语:regular expression,在代码中常简写为regex、regexp或re),计算机科学的一个概念。正则表通常被用来检索、替换那些符合某个模式(规则)的文本。
许多程序设计语言都支持利用正则表达式进行字符串操作。例如,在perl中就内建了一个功能强大的正则表达式引擎,还有java语言自带的。正则表达式这个概念最初是由unix中的工具软件(例如sed和grep)普及开的。正则表达式通常缩写成“regex”,单数有regexp、regex,复数有regexps、regexes、regexen。
// 表达式对象 pattern p = pattern. compile("[\\\\?\\*\\:\\[\\]\\/]"); // 创建 matcher 对象 matcher n = p.matcher(systemname); matcher m = p.matcher(unitcodename); // 替换 string sheetnamesystem = n.replaceall( ""); string sheetnameunit = m.replaceall( "");
下面看下java正则表达式替换所有特殊字符
java正则表达式替换所有特殊字符如下所示:
/** * 正则替换所有特殊字符 * @param orgstr * @return */ public static string replacespecstr(string orgstr){ if (null!=orgstr&&!"".equals(orgstr.trim())) { string regex="[\\s~·`!!@#¥$%^……&*(())\\-——\\-_=+【\\[\\]】{{}}\\|、\\\\;;::‘'“”\",,《<。.》>、/??]"; pattern p = pattern.compile(regex); matcher m = p.matcher(orgstr); return m.replaceall(""); } return null; }
以上所述是小编给大家介绍的使用正则表达式替换报表名称中的特殊字符,实现一个模拟后台数据登入的效果,希望对大家有所帮助