属性值的卷曲引号是否有效 xml

发布于 2025-01-16 21:44:42 字数 124 浏览 0 评论 0原文

例如,以下行是一个有效的 xml

<?xml version=“1.0” encoding=“UTF-8” ?>

如果有人也能够为此提供参考,那将非常有帮助。

For example is the following line a valid xml

<?xml version=“1.0” encoding=“UTF-8” ?>

It would be very helpful if somebody also able to provide reference for this.

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

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

发布评论

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

评论(2

以歌曲疗慰 2025-01-23 21:44:42

至于参考,XML规范位于https://www.w3.org/TR /REC-xml/ 相关规则是

[10]    AttValue       ::=      
           '"' ([^<&"] | Reference)* '"'
        |  "'" ([^<&'] | Reference)* "'"

As for the reference, the XML specification is at https://www.w3.org/TR/REC-xml/ and the relevant rule is

[10]    AttValue       ::=      
           '"' ([^<&"] | Reference)* '"'
        |  "'" ([^<&'] | Reference)* "'"
呢古 2025-01-23 21:44:42

简短回答:否。有效的双引号是十六进制 0x22(普通 ascii),而您的示例提供了十六进制 0x201c。

适当的 XML 编辑器应该提供正确的编辑器。

从历史上看,对弯曲引号的支持是信息技术中的一个问题,主要是因为广泛使用的 ASCII 字符集不包含它们的表示形式。

应用程序内和跨应用程序的曲线报价

Short answer: No. Valid double quotes are hex 0x22 (plain ascii) while your example provided hex 0x201c.

A proper XML editor should provide the right ones.

Historically, support for curved quotes was a problem in information technology, primarily because the widely used ASCII character set did not include a representation for them.

Curved quotes within and across applications

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