gpt4 book ai didi

java - 列出字符串中的 HTML 标签

转载 作者:行者123 更新时间:2023-11-30 04:52:18 24 4
gpt4 key购买 nike

我有一个字符串,我想从中列出其中存在的所有 HTML 标签。有没有库可以完成这项工作?

任何信息都会对我非常有帮助。

最佳答案

您可以使用以下代码从字符串中仅提取 HTML 标记。

    package com.overflow.stack;

/**
*
* @author sarath_sivan
*/

public class ExtractHtmlTags {

public static void getHtmlTags(String html) {
int beginIndex = 0;
while(beginIndex!=-1) {
beginIndex = html.indexOf("<", 0);
int endIndex = html.indexOf(">", beginIndex+1);
String htmlTag = "";
try {
if(beginIndex!=-1) {
htmlTag = html.substring(beginIndex, endIndex+1);
}
} catch(Exception e) {
e.printStackTrace();
}
System.out.println(htmlTag);
html = html.substring(endIndex+1, html.length());
}
}

public static void main(String[] args) {
String html = "<html><body><h2>List HTML tags from a String</h2>hello<br /></body></html>";
ExtractHtmlTags.getHtmlTags(html);
}

}

但是,我不明白你想用提取的 HTML 标签做什么。祝你好运!

关于java - 列出字符串中的 HTML 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9566218/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com