我想从String编辑中删除所有html标签。
例如"<h1> Hello World </ h1>"
到"Hello World"
但是用我现在的replaceAll java变换
"<h1> Hello World </ h1>"
至""
。
如果有人知道更好更正确的方式,我将不胜感激。 也许这与sql中的类似函数类似?
public void entfTags(){
String edit = file.getOriginal();
edit=edit.replaceAll("<br>","\n");
edit=edit.replaceAll("<\?.*?>", "");
file.setEdit(edit);
}