Help with regex to detect urls in a string
- by Ali Taha Ali Mahboub
Hi guys
i found this regex to detect urls in a string and wraps them inside the tag
public static String detectUrls(String text) {
String newText = text
.replaceAll("(?<!http://)www\\.[\\w/%.\\-?&=]+", "http://$0")
.replaceAll("(?:https?|ftps?|http?)://[\\w/%.\\-?&=]+",
"<a href='$0'>$0</a>");
return newText;
}
but this regex doesn't work with the following pattern:
https://www.myserver.com
so please advise.