1. 程式人生 > >使用正則表示式從字串中查詢子字串

使用正則表示式從字串中查詢子字串

直接上程式碼:

		String string = "asdasd#_%12.gifdadsa#_%2324.gif";
		String regx = "#_%\\d+.gif";
		Pattern pattern = Pattern.compile(regx,Pattern.CASE_INSENSITIVE);
		Matcher matcher = pattern.matcher(string);
		while(matcher.find()){
			System.out.println(matcher.group());
		}