文字列に段落値のみを取得する必要がある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>