<table width="100%" border="0" cellpadding="0" cellspacing="1" class="table_border" id="center_table">
<tbody>
<tr>
<td width="25%" class="heading_table_top">S. No.</td>
<td width="45%" class="heading_table_top">
Booking Status (Coach No , Berth No., Quota)
</td>
<td width="30%" class="heading_table_top">
* Current Status (Coach No , Berth No.)
</td>
</tr>
</tbody>
</table>
Web ページをスクラップし、応答を文字列に保存します。
次に、それをjsoup docに解析します
Document doc = Jsoup.parse(result);
次に、使用してテーブルを選択します
Element table=doc.select("table[id=center_table]").first();
ここで、jsoup を使用して、タグ「Booking Status (Coach No , Berth No., Quota)」のテキストを「Booking Status」に置き換える必要があります。
私は試した
table.children().text().replaceAll(RegEx to select the text?????, "Booking Status");