1. 程式人生 > >正則表示式匹配各種括號內內容

正則表示式匹配各種括號內內容


用正則表示式匹配兩個字元中間的文字

String skh ="(?<=\\《)[^\\》]+";//用於匹配《》裡面的文字
String str="但實際上《kajdwdej》孫大偉多";//測試字串
Pattern pattern=Pattern.compile(skh);
		Matcher matcher=pattern.matcher(str);
		boolean is=matcher.find();
	if(is)System.out.print(matcher.group());
輸出結果為:kajdwdej
同理將skh字串中《和》換成對應所要匹配的兩個字元,就可以匹配兩個字元中間的文字