Java正则表达式从html中删除标签

时间:2017-03-23 21:10:04

标签: java regex jsoup

<table><tr><td>HEADER</td><td>Header Value <supporting value></td></tr><tr><td>SUB</td><td>sub value. write to <test@gmail.com></td></tr><tr><td>START DATE</td><td>11/23/ 2016</td></tr><tr><td>END DATE</td><td>11/23/2016</td></tr></table>

上面的文字是我的html字符串,需要提取HEADER,SUB,START DATE和END DATE的值。我使用Jsoup来提取值,但我遇到了非html元素标签的问题。 API要么跳过这些元素,要么添加一个首先不存在的结束标记。

所以我的想法是用&lt;替换非html元素标签,然后使用Jsooup提取值

有什么建议吗?

3 个答案:

答案 0 :(得分:0)

您可能希望引用jSoup来解析HTML文档。您可以使用此API提取和操作数据。

答案 1 :(得分:0)

您可以使用此正则表达式提取内容:

/<td>[^<]*<([^>]*)><\/td>/

假设标记布局看起来总是一样。

虽然您无法使用正则表达式解析完整的HTML文档,因为它不是一种无上下文的语言,但事实上的部分提取是可能的。

答案 2 :(得分:0)

找到解决方案,使用模式&lt;([^ \ s&gt; /] +)获取html字符串中的所有标记

然后用“&amp; lt”“&amp; gt”替换TR和TD以外的所有标签。当我使用Jsoup解析文本时,我得到了所需的值。

请找到以下代码,

public class JsoupParser2 {

public static void main(String args[]) {

    String orginalString, replaceString = null;
    HashSet<String> tagSet = new HashSet<String>();
    HashMap<String,String> notes = new HashMap<String,String>();

    Document document = null;
    try{

        //Read the html content as String
        File testFile = new File("C:\\test.html");
        List<String> content = Files.readLines(testFile,  Charsets.UTF_8);
        String testContent = content.get(0);

        //Get all the tags present in the html content
        Pattern p = Pattern.compile("<([^\\s>/]+)");
        Matcher m = p.matcher(testContent);
        while(m.find()) {
            String tag = m.group(1);
            tagSet.add(tag);
        }

        //Replace the tags thats non-html
        for(String replaceTag : tagSet){
            if(!"table".equals(replaceTag) && !"tr".equals(replaceTag) && !"td".equals(replaceTag)){
                orginalString = "<"+replaceTag+">";
                replaceString = "&lt;"+replaceTag+"&gt;";
                testContent = testContent.replaceAll(orginalString, replaceString);
            }
        }

        //Parse the html content
        document = Jsoup.parse(testContent, "", Parser.xmlParser());

        //traverse through TR and TD to get to the values
        //store the values in the map
        Elements pTags = document.select("tr");
        for (Element tag : pTags) {
            if(!tag.getElementsByTag("td").isEmpty()){
                String key = tag.getElementsByTag("td").get(0).text().trim();
                String value = tag.getElementsByTag("td").get(1).html().trim();
                System.out.println("KEY : "+key); System.out.println("VALUE : "+value);
                notes.put(key, value);
                System.out.println("==============================================");
            }
        } 

    }catch (IOException e) {
        e.printStackTrace();
    }catch(IndexOutOfBoundsException ioobe){
        System.out.println("ioobe");
    }
}

}