XML 文件偏移和 XPath 插入元素

发布于 2024-12-28 18:31:10 字数 185 浏览 2 评论 0原文

我想知道是否有任何方法可以(仅)基于文件表示中的偏移量获取 XPath 在我的文件

......element

例如,偏移量 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美的太阳 2025-01-04 18:31:10

不,不使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文