欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

正则表达式去除html的属性contenteditable 正则表达式htmlcontenteditable替换

程序员文章站 2024-01-30 08:45:10
...
Pattern pattern2 = Pattern.compile("(?<=<)[^>]*(contenteditable=(?:\"|'|\\s)*(?:true)(?:\"|'|\\s)*)[^>]*(?=>)");

可以匹配 html标签内部的contenteditable属性 并将匹配到的放入第一个捕获组,方便将该属性替换为空
替换的java代码为:

public String doReplace(String value) {
value = value.replaceAll("\\$", "\\\\\\$");
Matcher match = pattern2.matcher(value);
StringBuffer sb = new StringBuffer();
while (match.find()) {
String result = match.group();
String target = match.group(1);
result = result.replaceAll(target, "");
match.appendReplacement(sb, result);
}
match.appendTail(sb);
value = sb.toString();
value = value.replaceAll("\\\\\\$", "\\$");
return value;
}