public static String regexURL(String str) {
String regex = "((http|ftp|https)://)?"
+ "(([a-zA-Z0-9\\._-]+\\."
+ "[a-zA-Z]{2,6})|([0-9]{1,3}\\.[0-9]{1,3}\\."
+ "[0-9]{1,3}\\.[0-9]{1,3}))(:[0-9]{1,4})*(/[a-zA-Z0-9\\&%_\\./-~-]*)?";
Pattern imgPattern = Pattern.compile(regex);
Matcher imgMatcher = imgPattern.matcher(str);
while (imgMatcher.find()) {
if (!"PNG,JPG,GIF,JPEG,BMP".contains(imgMatcher.group().substring(imgMatcher.group().lastIndexOf(".") + 1).toUpperCase())) {//排除内容中的表情或者图片
String end = "</a>";
if (null != imgMatcher.group() && !imgMatcher.group().startsWith("http")) {
String url = imgMatcher.group();
String before = "<a href='" + url + "'>";
str = str.replace(url, before + url + end);
} else {
String url = imgMatcher.group();
String before = "<a href='" + url + "'>";
str = str.replace(url, before + url + end);
}
}
}
return str;
}
替换文本中的URL为超链接标签<a>
最新推荐文章于 2022-01-26 20:11:38 发布