I'm using this method to parse out plain text URLs in some HTML and make them links
private String fixLinks(String body) {
String regex = "^(https?|ftp|file)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&@#/%=~_|]";
body = body.replaceAll(regex, "<a href=\"$1\">$1</a>");
Log.d(TAG, body);
return body;
}
No URLs are replaced in the HTML however. The regular expression seems to be matching URLs in other regular expression testers. What's going on?
\s*after the^to allow for whitespace. – sarumont Nov 29 '11 at 20:37