A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

写出正则表达式,从一个字符串中提取链接地址

1 个回复

倒序浏览
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());
}
}

}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马