The bellow code detects and converts urls in String. Is there faster way or more elegant way to do this block of code?:
public static String detectAndConvertURLs(String text) {
String[] parts = text.split("\\s");
String rtn = text;
for (String item : parts)
try {
// adjustment based one of the answers
Pattern p = Pattern.compile("((mailto\\:|(news|(ht|f)tp(s?))\\://){1}\\S+)");
Matcher m = p.matcher(item);
if( m.matches() ) item = m.group(1);
URL url = new URL(item);
String link = url.getProtocol() + "://" + url.getHost() + "/" + (url.getPath() == null ? "" : url.getPath()) + (url.getQuery() == null ? "" : "?" + url.getQuery());
rtn = StringUtils.replace(rtn, item, "<a rel=\"nofollow\" href=\"" + link + "\">" + link + "</a> ");
} catch (MalformedURLException ignore) {
}
return rtn;
}
[1][http://www.google.com/]. – Thilo Nov 17 '10 at 6:30