黑马程序员技术交流社区

标题: 写出正则表达式,从一个字符串中提取链接地址 [打印本页]

作者: alax    时间: 2014-5-20 04:56
标题: 写出正则表达式,从一个字符串中提取链接地址
写出正则表达式,从一个字符串中提取链接地址
作者: BigKarel    时间: 2014-5-23 13:16
public class Regex {

public static void main(String[] args) {
url();
}

static void url() {

String input = “黑马程序员 “;
Pattern pattern;
Matcher matcher;
pattern = Pattern.compile(“<a(?: [^>]*)+href=([^ >]*)(?: [^>]*)*>”);
matcher = pattern.matcher(input);
while (matcher.find()) {
System.out.println(matcher.group());
}
}

}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2