尝试创建一个正则表达式来从java中的字符串中提取网站地址,但无法正确执行
我正在尝试使用以下代码从 url 中提取网站地址,
public String getWebSiteAddress(String text)
{
Pattern p = Pattern.compile("\\b([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,3}\\b");
//Pattern p = Pattern.compile("^http\\:/[a-zA-Z0-9\\-\\.]+\\.[a-zA-Z]{2,3}(/\\S*)?$");
System.out.println("\\b([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,3}\\b");
Matcher m = p.matcher(text);
if(m.matches())
{
System.out.println("got it");
return m.group(0) ;
}
else
{
System.out.println("ddnt get");
return "";
}
}
结果该代码在 regexBuddy 中完美运行,但在 JAVA 中 任何人都可以帮助我我的正则表达式有什么问题或者我应该根据java更改我的正则表达式中的某些内容吗?
我想要提取的网站是这样的:
I'm trying to extract website address from a url using following code
public String getWebSiteAddress(String text)
{
Pattern p = Pattern.compile("\\b([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,3}\\b");
//Pattern p = Pattern.compile("^http\\:/[a-zA-Z0-9\\-\\.]+\\.[a-zA-Z]{2,3}(/\\S*)?$");
System.out.println("\\b([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,3}\\b");
Matcher m = p.matcher(text);
if(m.matches())
{
System.out.println("got it");
return m.group(0) ;
}
else
{
System.out.println("ddnt get");
return "";
}
}
turns out this code works flawlessly inside regexBuddy but in JAVA
can anyone help me what is the problem with my regex or should I change something in my regex according to java?
the website I want to extract is something like :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要使用匹配器的 find() 方法。
显然,只有整个字符串与正则表达式匹配时,匹配才有效。
You may need to use the find() method of matcher.
Matches apparently only works if the entire string matches the regex.