博客园 首页 私信博主 显示目录 隐藏目录 管理

删除html标签,取其中的文本

public  String removeHtmlTags() {
    String str = "<p><b> welcome to test</b></p>";
    String pattern = "\\<.*?\\>";
    String target = str.replaceAll(pattern, "");
    Return target;    
}

 

posted @ 2021-01-13 21:10  MrSharp  阅读(127)  评论(0编辑  收藏  举报