HtmlAgilityPack - 如何读取某些表 - c# 4.0
使用 c# 4.0 和 htmlagilitypack 如何读取某个表中的值。我的意思是,假设有 10 个表,我想读取第 6 个表中的值,或者我有表 ID。
或者说我想读取某个 td 之后的 td 值。
或者在某些 div 或元素或文本之后的表格。这些可能吗?
With using c# 4.0 and htmlagilitypack how can i read values inside certain table. I mean lets say there are 10 tables and i want to read values from 6 th or i have table id.
Or lets say i want to read td value coming after certain td.
Or table coming after certain div or element or text. Are these possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所询问的一切都可以相对容易地完成。缺少文档并不重要,它在使用和功能上都应该类似于 XML 和网络的
XmlDocument
实现。查找第6个表:
通过id查找表/元素:
您应该注意到一些模式。
Everything you have asked about could be done relatively easily. It doesn't matter that its documentation might be lacking, it should be similar to XML and the network's
XmlDocument
implementation in both use and functionality.Finding the 6th table:
Finding the table/element by id:
You should notice some patterns.