xlsx XML 解析器对特殊字符的支持

发布于 2024-10-18 09:11:04 字数 351 浏览 7 评论 0原文

Xlsx似乎不支持xml标准,这需要xml“理解”5 <>'"& as &name; 并且有非常奇怪的行为。

任何人都知道在什么情况下要向 sharedStrings.xml 注入什么使用 <>'"& 为了不破坏文件?

编辑:看起来 ' 可以替换为 ' &可以替换为 &

the Xlsx seems not to support the standard of xml , which requires the xml to "understand" the 5 <>'"& as &name; and have very strange behavior.

anyone knows what to inject to sharedStrings.xml when use of <>'"& inorder for it not to break the file?

Edit : as it seems the
' can be replaced with '
& can be replaced with &

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

洒一地阳光 2024-10-25 09:11:04

xlsx 格式不支持所有特殊字符,因为 xml 不希望处理 ascii 格式。解决办法是使用unicode格式。

如果你确实有问题,那么你无法将所有字符转换为 ascii 格式,并且你必须更改而不是更改特殊的 5 个字符之一,例如插入空格。

我不确定 Excel 开发人员测试了第一个标签中声明的不是 UTF-8 的 xml 文件

xlsx format does not support all the special characters, as there xml does not expect to handle ascii format. the solution is to use unicode format.

if you do have a problem then you cant convert to ascii format all the charachters, and you have to change not one of the special 5 like insert space instead.

im not sure that excel developers tested xml files that are declared in the first tag not beening UTF-8

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