在节点选择标准中添加 OR 子句 - HTMLAgility
我可以使用 HTMLAgility 在节点选择中放置 OR 子句吗?
(HtmlAgilityPack.HtmlNodeCollection)doc.DocumentNode.SelectNodes("//td[@class=\"roomPrice figure\"]");
我需要的是有时它应该像 SelectNodes("//td[@class=\"roomPricefigure\"]");
有时它就像 SelectNodes("//td[@class=\"roomPricefigure bb\"]");
我需要同时获取两个类 roomPrice图
或roomPrice 图bb
我怎样才能完成这个。
感谢您的帮助
Can I put OR clause in node selection using HTMLAgility
(HtmlAgilityPack.HtmlNodeCollection)doc.DocumentNode.SelectNodes("//td[@class=\"roomPrice figure\"]");
What I need is some times it should be like SelectNodes("//td[@class=\"roomPrice figure\"]");
and some times it is like SelectNodes("//td[@class=\"roomPrice figure bb\"]");
I need to get both either class will roomPrice figure
OR roomPrice figure bb
How can I accomplish this.
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Xpath 确实有一个 OR 运算符。尝试使用此方法进行选择查询 -
Xpath does have an OR operator. Try this for your selection query -