首页 > 代码库 > 正则匹配查找模板
正则匹配查找模板
Pattern p=Pattern.compile("[a-zA-Z0-9]+"); Matcher w=p.matcher(str); while(w.find()){ String word=w.group(); int index=w.start(); if(!dictionary.containsKey(word)){ ArrayList<Location> list=new ArrayList<Location>(); dictionary.put(word, list); } ArrayList<Location> list=dictionary.get(word); Location pair=new Location(row,index); list.add(pair); dictionary.put(word, list); //System.out.println(index); }
正则匹配查找模板
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。