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

正则不要乱用

时间:2014-09-09 10:37:18      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   strong   art   div   

正则不要乱用


比较如下两个正则表达式:

 

(?:.*?(?:\\s|,)+)*no\\s+air\\s+conditioning.*?
(?:.*?(?:\\s|,)+)?no\\s+air\\s+conditioning.*?


区别仅仅在于*和?的区别,一字之差性能就相差很多:前者是35699.334;后者是108.686
完整测试代码:

 

String TEST_VALUE = "ABS, traction control, front and side airbags, Isofix child seat anchor points, no air conditioning, electric windows, \r\nelectrically operated door mirrors";
double start = System.nanoTime();
Pattern pattern = Pattern.compile("^(?:.*?(?:\\s|,)+)*no\\s+air\\s+conditioning.*$");
assertTrue(pattern.matcher(TEST_VALUE).matches());
double end = System.nanoTime();
LOGGER.info("Took {} micros", (end - start) / (1000 ));

 两分钟以后这个程序还在运行,已经堵塞了CPU:

 

正则不要乱用

标签:style   blog   color   os   io   ar   strong   art   div   

原文地址:http://www.cnblogs.com/muzhongjiang/p/3961222.html

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