我正在使用 Jericho 来解析 Html。我有一个 html 页面,我需要在其中提取两个特定文本之间的数据。
<table width="100%" align="left">
<tr><td>
<b> Item 7. </b>
</td></tr>
</table>
...........other data...........
other tags
<table width="100%" align="left">
<tr><td>
<b> fd ..fds </b>
</td></tr>
</table>
...........other data ends...........
<table width="100%" align="left">
<tr><td>
<b> Item 8. </b>
</td></tr>
</table>
如何使用 jercio提取第 7项和第 8 项之间的数据。
提前致谢