正则匹配查找模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则匹配查找模板相关的知识,希望对你有一定的参考价值。
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); }
以上是关于正则匹配查找模板的主要内容,如果未能解决你的问题,请参考以下文章