<table class="listProvision" class="itable">
<tr>
<td class="whatever">some infos</td>
<td>some more infos</td>
<td>13908402</td>
<td>hello world</td>
</tr>
<tr>
<td class="whatever">some infos</td>
<td>some more infos</td>
<td id="num">13908402</td>
<td>hello world</td>
</tr>
</table>
鉴于上面的示例 HTML,我如何正确解析with 类<tr>...</tr>
之间的table
listProvision
所有存在?
我试过:<table.*?listProvision.*?>(?:.*?<tr.*?>(.*?)</tr>)+.*?</table>
,但我不知道出了什么问题。永远不会有任何复杂的 html 被拉入这个正则表达式,所以不用担心。