获取href-tag的名称

时间:2016-11-01 18:25:22

标签: java hyperlink pattern-matching href

我有这样的链接:

href

我想用java获取它的名称(当前社区)。我尝试了模式/匹配器,但我不记得这种情况下的令牌。

我的href是在字符串' title_string'

Pattern p_title = Pattern.compile(">.<");
Matcher m_title = p_title.matcher(title_string);
while (m_title.find()) {
    String m_title_string = m_title.group().toString();
    System.out.println(m_title_string);
}

也许有人有想法?

0 个答案:

没有答案