Java正则备忘(附正则表达式查询表)

A sample:
Java正则备忘(附正则表达式查询表)_第1张图片
	/**
	 * description: 取出上图中的单词列表,其他没用的就不要了<br>
	 * @param args
	 * Mar 22, 2010
	 * @author huxiao [email protected]
	 */
	public static void main(String[] args) {
		String testString = "String(fjsi fj\"this is my target word\"lsd jflks)";
		Matcher matcher = Pattern.compile("w\\(\\d+,\"[^\"]+\",\"([^\"]+)\"").matcher(testString);
		if(matcher.find()){
			System.out.println(matcher.group(1));
		}
	}


------------------------------------------------------------


正则表达式查询表:

Java正则备忘(附正则表达式查询表)_第2张图片

你可能感兴趣的:(java,正则表达式,qq)