java正则表达式获取指定HTML标签的指定属性值且替换的方法

时间:2021-05-19

实例如下:

public static String repDomain(String source, String domain, String element, String attr) { String img = ""; Pattern p_image; Matcher m_image; String regEx_img = "<" + element + "[^<>]*?\\s" + attr + "=['\"]?(.*?)['\"]?(\\s.*?)?>"; p_image = Pattern.compile(regEx_img, Pattern.CASE_INSENSITIVE); m_image = p_image.matcher(source); while (m_image.find()) { img = m_image.group(); Matcher m = Pattern.compile("href\\s*=\\s*\"?(.*?)(\"|>|\\s+)").matcher(img); while (m.find()) { String srcVal = m.group(1); if(srcVal.indexOf("/@tenant")>=0){ int idx = srcVal.indexOf("/@tenant"); StringBuffer temp = new StringBuffer(); String dstVal = temp.append(domain).append(srcVal.substring(idx+1)).toString(); source = source.replace(srcVal, dstVal); } } } return source; }

以上就是小编为大家带来的java正则表达式获取指定HTML标签的指定属性值且替换的方法全部内容了,希望大家多多支持~

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章