我的html结构如下
<td class="opps">1:2</td>
我正在尝试使用 XPath 拆分 td 值,如下所示
.//*[contains(@class, 'opps')]/text()[normalize-space(substring-after(., ':'))]
.//*[contains(@class, 'opps')]/text()[normalize-space(substring-before(., ':'))]
但值返回1:2
如何分别提取1和2?
我也在使用 HtmlNodeNavigator 和 HtmlAgilityPack。
有什么问题?
先感谢您。