在特定的字符串androidstudio之后获取单词

时间:2018-03-06 16:29:03

标签: java android-studio

我的问题是我有一个名为url的字符串,其结构类似于以下https://www.ejemplo.com.co,我只需要在“https:// www。”之后提取文本,这就是我所服务的“ejemplo.com.co”,当然我不知道网址会不断变化。

1 个答案:

答案 0 :(得分:0)

使用以下内容:

    public String retrieveStr(String url) throws MalformedURLException {
       URL aURL = new URL(url);
       String desireStr  = aURL.getHost().split("\\.")[1];
      return desireStr;
  }

使用此