匹配指定网址的正则表达式怎么写 比如以http://www.baidu.com开头的所有网址

我请问下,匹配指定网址的正则表达式怎么写 比如以http://www.baidu.com开头的所有网址
最新回答
半夏ら

2024-04-30 00:05:22

public static void main(String[] args) {
String str = "
http://www.baidu.com/aa
http://www.baidu.com/sss
";
Matcher matcher = Pattern.compile("(
http://www.baidu.com
[^\\s]+)").matcher(str);
while(matcher.find()){
System.out.println(matcher.group());
}
}
含悦人道

2024-04-30 03:04:17

^
http:////www/.baidu/.com.
*