标签: java html regex tags
现在我正在使用String.replaceAll("\\<(.*?)\\>", ""); 但它并没有消除&#39; 1&#39;在<h1></h1>标签中。如果不为每个可能的标签使用单独的方法,有没有办法做到这一点?
String.replaceAll("\\<(.*?)\\>", "");
<h1></h1>
答案 0 :(得分:1)
试试这个
String.replaceAll("<[^>]*>", "");