关于Java中使用正则表达式去除Html标签字符串的说明

String test = "<div>测试</div>";
test = test.replaceAll("</?[^>]+>", "");
test = test.replaceAll("<a>\\s*|\t|\r|\n</a>", "");
return test;

发表回复