我的问题是我有一个名为url的字符串,其结构类似于以下https://www.ejemplo.com.co,我只需要在“https:// www。”之后提取文本,这就是我所服务的“ejemplo.com.co”,当然我不知道网址会不断变化。
答案 0 :(得分:0)
使用以下内容:
public String retrieveStr(String url) throws MalformedURLException {
URL aURL = new URL(url);
String desireStr = aURL.getHost().split("\\.")[1];
return desireStr;
}
使用此