<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>
我剪掉網頁並將響應存儲在字符串中。使用Jsoup代替標記中的文本
我然後解析成jsoup DOC
Document doc = Jsoup.parse(result);
然後我選擇使用
Element table=doc.select("table[id=center_table]").first();
現在我需要更換標籤「訂單管理(文字教練不表,泊位號,配額)「到」預訂狀態「使用jsoup ..任何人都可以幫忙嗎?
我試圖
table.children().text().replaceAll(RegEx to select the text?????, "Booking Status");
編輯我的問題。請檢查 – ziaasp
而且您還明確指出了您想達到的目標嗎? '替換文字'似乎很模糊 – wtsang02