我的网址与http://www.google.com/api/js/example类似,我想在java中使用正则表达式仅提取http:/www.google.com,我该怎么做?
答案 0 :(得分:7)
只需使用URL
:
public static void main(String[] args) throws Exception {
final URL url = new URL("http://www.google.com/api/js/example");
System.out.println(url.getProtocol() + "://" + url.getHost());
}