如何查找字符串是否包含 html 数据?

2022-09-01 20:49:20

如何查找字符串是否包含 HTML 数据?用户通过Web界面提供输入,他很可能使用简单的文本或使用HTML格式。


答案 1

我知道这是一个古老的问题,但我遇到了它,并正在寻找更全面的东西,可以检测HTML实体之类的东西,并忽略<的其他用途和>符号。我想出了以下运行良好的课程。

您可以在 http://ideone.com/HakdHo 现场玩

我还将它上传到GitHub,其中包含一堆JUnit测试。

package org.github;

/**
 * Detect HTML markup in a string
 * This will detect tags or entities
 *
 * @author dbennett455@gmail.com - David H. Bennett
 *
 */

import java.util.regex.Pattern;

public class DetectHtml
{
    // adapted from post by Phil Haack and modified to match better
    public final static String tagStart=
        "\\<\\w+((\\s+\\w+(\\s*\\=\\s*(?:\".*?\"|'.*?'|[^'\"\\>\\s]+))?)+\\s*|\\s*)\\>";
    public final static String tagEnd=
        "\\</\\w+\\>";
    public final static String tagSelfClosing=
        "\\<\\w+((\\s+\\w+(\\s*\\=\\s*(?:\".*?\"|'.*?'|[^'\"\\>\\s]+))?)+\\s*|\\s*)/\\>";
    public final static String htmlEntity=
        "&[a-zA-Z][a-zA-Z0-9]+;";
    public final static Pattern htmlPattern=Pattern.compile(
      "("+tagStart+".*"+tagEnd+")|("+tagSelfClosing+")|("+htmlEntity+")",
      Pattern.DOTALL
    );

    /**
     * Will return true if s contains HTML markup tags or entities.
     *
     * @param s String to test
     * @return true if string contains HTML
     */
    public static boolean isHtml(String s) {
        boolean ret=false;
        if (s != null) {
            ret=htmlPattern.matcher(s).find();
        }
        return ret;
    }

}

答案 2

您可以使用正则表达式来搜索 HTML 标记。