正则表达式 学习笔记(一)

前端之家收集整理的这篇文章主要介绍了正则表达式 学习笔记(一)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class FindGroup 
{
	public static void main(String[] args)
	{
		Matcher m=Pattern.compile("Java")
				.matcher("Java is very easy! I love Java!");
		while(m.find())
		{
			System.out.println(m.group());
		}
		int i=0;
		while(m.find(i))
		{
			System.out.print(m.group()+"\t");
			i++;
		}
	}
}
原文链接:https://www.f2er.com/regex/362370.html

猜你在找的正则表达式相关文章