var test = "<div style=\"height:100px;\">测试<div>"; test = test.replace(/style\=\"[^\"]*\"/g, ""); return test;
月度归档: 2017 年 1 月
关于Java中使用正则表达式去除Html标签字符串的说明
String test = "<div>测试</div>"; test = test.replaceAll("</?[^>]+>", ""); test = test.replaceAll("<a>\\s*|\t|\r|\n</a>", ""); return test;