我的字符串中有一个 html 数据,我只需要在其中获取段落值。下面是一个示例 html。
<html>
<head>
<title>
<script>
<div>
Some contents
</div>
<div>
<p> This is what i want </p>
<p> Select all data from p </p>
<p> Upto this is required </p>
</div>
<div>
Other html elements
</div>
那么如何使用字符串操作从段落中获取数据。
期望的输出
<Div>
<p> This is what i want </p>
<p> Select all data from p </p>
<p> Upto this is required </p>
</div>