我有这个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">
您可以使用indexOf('
然后使用indexOf('>'),您将获得End标签的索引
假设您有类似]的字符串>
String html = "<html>My page</html>"; String image = html.substring(html.indexOf("<img"), html.indexOf(">"));
然后您知道该怎么办!
如果有其他需要请通知我