public static List<String> getImageSrc(String htmlCode) {
List<String> imageSrcList = new ArrayList<String>();
String regular="<img(.*?)src="(.*?)"";
String img_pre="(?i)<img(.*?)src="";
String img_sub=""";
Pattern p=Pattern.compile(regular,Pattern.CASE_INSENSITIVE);
if(StringUtils.isNotBlank(htmlCode)){
Matcher m = p.matcher(htmlCode);
String src = null;
while (m.find()) {
src=m.group();
src=src.replaceAll(img_pre, "").replaceAll(img_sub, "").trim();
imageSrcList.add(src);
}
}
return imageSrcList;
}
-----------------------有任何问题可以在评论区评论,也可以私信我,我看到的话会进行回复,欢迎大家指教------------------------
(蓝奏云官网有些地址失效了,需要把请求地址lanzous改成lanzoux才可以)