XML 文件偏移和 XPath 插入元素
我想知道是否有任何方法可以(仅)基于文件表示中的偏移量获取 XPath 在我的文件
例如,偏移量 16 到 23 可以给出 xpath '/xml/tag' 我正在使用 etree 模块和 Python 预先感谢闪电对此
I wonder if there is any way to obtain an XPath based (only) on the offset in the file representation
In my file
<xml>......<tag>element</tag>
for example, the offsets 16 to 23 could give the xpath '/xml/tag'
i'm using etree module with Python
thanks in advance for lightning on this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不使用 XPath。
XPath 将 XML 文档解析为节点树(W3C XML Infoset model)并且任何词汇表示都会在那时丢失。
No, not with XPath.
XPath treats an XML document after it is parsed as a tree of nodes (the W3C XML Infoset model) and any lexical representation is lost at that time.