htmlagility 插入行号
我有一个关于 htmlagilitypack 的问题。
如何插入特定的行或行位置(而不是节点)?如果我在第 100 行出现 HtmlParseError (缺少开始标记),我该如何将这个缺少的标记插入到该行中。
I have a question about htmlagilitypack.
How can I insert into specific line or lineposition (not node)? If I have HtmlParseError at line 100 (missing opening tag ), how can I insert this missing tag into that line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在一般情况下,你不能。
您必须使用标准文本流(例如 StreamReader)重新加载文件,并使用行 & 直接在原始文本中修复它。列位置。
In the general case, you can't.
You'll have to reload the file with a standard text stream (StreamReader say), and fix it directly in the raw text, using the line & column position.