2
我需要從網站上的表格中刮取一些網站數據並創建將由應用程序使用的XML文檔。刮掉HTML表格數據並創建XML文檔
表看起來是這樣的:
<table id="results" class="results">
<thead>
<tr>
<th scope="col" class="resRoute">Route</th>
<th scope="col" class="resDir">To</th>
<th scope="col" class="resDue sorted">Time</th>
</tr>
</thead>
<tbody>
<tr>
<td class="resRoute">263</td>
<td class="resDir">Route Name</td>
<td class="resDue">1 min</td>
</tr>
<tr>
<td class="resRoute">17</td>
<td class="resDir">Route Name</td>
<td class="resDue">2 min</td>
</tr>
</tbody>
</table>
而且我想創建一個XML飼料,看起來像這樣:
<train>
<route>263</route>
<direction>Route Name</direction>
<due>2 Min</due>
</train>
<train>
<route>17</route>
<direction>Route Name</direction>
<due>12 Min</due>
</train>