正则的

Pattern pattern = Pattern.compile("(?<=[a-zA-Z])");
                    Matcher matcher = pattern.matcher(modelStr);
                    while (matcher.find()) {
                        index = matcher.start();//找到匹配的位置
                    }

 

 

宽断言 (?=exp) 匹配exp前面的位置
(?<=exp) 匹配exp后面的位置
(?!exp) 匹配后面跟的不是exp的位置
(?<!exp) 匹配前面不是exp的位置
posted @ 2016-10-09 10:22  乱码出黑客  阅读(400)  评论(0编辑  收藏  举报