检测并从字符串中提取 URL?
这是一个简单的问题,但我只是不明白。我想检测字符串中的url并将其替换为缩短的字符串。
我从stackoverflow中发现了这个表达式,但结果只是http
Pattern p = Pattern.compile("\\b(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]",Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(str);
boolean result = m.find();
while (result) {
for (int i = 1; i <= m.groupCount(); i++) {
String url=m.group(i);
str = str.replace(url, shorten(url));
}
result = m.find();
}
return html;
有没有更好的主意?