本文共 209 字,大约阅读时间需要 1 分钟。
Pattern p = Pattern.compile("\\(.*\\)"); Matcher m = p.matcher("1.2.0(23)"); if(m.find()){ System.out.println(StringUtils.substring("1.2.0(23)", m.start(), m.end())); }
输出结果:23
转载地址:http://eggix.baihongyu.com/