欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用java正则表达式获取url地址 正则表达式Java.netBlog 

程序员文章站 2022-05-24 08:20:17
...
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class GetUrl {

	//使用java正则表达式获取url地址中的主域名代码如下:
	/**
	 * 如果要得到 chinajavaworld.com/entry/4545/0/正则表达式最后加上 .* 即可.
	 *如要取完整域名,使用以下代码:
	 *Pattern.compile("[^//]*?\\.(com|cn|net|org|biz|info|cc|tv)", Pattern.CASE_INSENSITIVE);
	 */
	public static void main(String[] args) {
		String url = "http://anotherbug.blog.chinajavaworld.com/entry/4545/0/";
		//Pattern p = Pattern.compile("(?<=http://|\\.)[^.]*?\\.(com|cn|net|org|biz|info|cc|tv)",Pattern.CASE_INSENSITIVE);
		
		//获取完整的域名
		Pattern p =Pattern.compile("[^//]*?\\.(com|cn|net|org|biz|info|cc|tv)", Pattern.CASE_INSENSITIVE);
		Matcher matcher = p.matcher(url);
		matcher.find();
		System.out.println(matcher.group());
	}
}