我如何在Java中分隔特定标签

问题描述 投票:0回答:1

我有这个html:

<p dir="ltr">Hello<br>
<img src="/path"> <br>
<b>hey</b> <b>hello</b> fox<br>
cat</p>

如何将img标签与p分开?我希望它像这样:

<p dir="ltr">Hello<br>
<br>
<b>hey</b> <b>hello</b> fox<br>cat</p>
<img src="/path"> 
java android html tags jsoup
1个回答
0
投票

您可以使用indexOf('

然后使用indexOf('>'),您将获得End标签的索引

假设您有类似]的字符串>

String html = "<html>My page</html>";
String image = html.substring(html.indexOf("<img"), html.indexOf(">"));

然后您知道该怎么办!

如果有其他需要请通知我

© www.soinside.com 2019 - 2024. All rights reserved.