All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.mdiy.util.MUtil Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
/**
 * Copyright (c) 2012-present 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循 铭软科技《服务协议》中的《保密条款》
 */








package net.mingsoft.mdiy.util;

import org.jsoup.Jsoup;

/**
 * 标签处理工具类
 */
public class MUtil {

    /**
     * html转内容纯文本
     * @param content 含有html 标签的内容
     * @return 纯文本内容
     */
    public  String html2text(String content) {
        return  Jsoup.parse(content).body().select("*").first().text();

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy