XML 回车编码

发布于 2024-08-21 18:38:03 字数 175 浏览 6 评论 0原文

我希望在 xml 节点中表示回车符。
我尝试过保留空白、十六进制实体,但没有成功 - 和 \n。通过浏览器查看。

示例

<Quote>
Alas, poor Yorick!
I knew him
</Quote>

谢谢。

I was looking to represent a carriage return within an xml node.
I have tried a whitespace preserve, hex entity with no luck- and a \n. viewing via a browser.

Example

<Quote>
Alas, poor Yorick!
I knew him
</Quote>

Thanks.

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

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

发布评论

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

评论(3

冰之心 2024-08-28 18:38:03

要将 CR 插入 XML,您需要使用其字符实体

这是因为兼容的 XML 解析器必须在解析之前将 CRLF 和任何不跟有 LF 的 CR 转换为单个 LF。此行为在行尾处理中定义XML 1.0 规范的部分。

To insert a CR into XML, you need to use its character entity .

This is because compliant XML parsers must, before parsing, translate CRLF and any CR not followed by a LF to a single LF. This behavior is defined in the End-of-Line handling section of the XML 1.0 specification.

与他有关 2024-08-28 18:38:03

xml:space="preserve" 必须适用于所有兼容的 XML 解析器。

但是,请注意,在 HTML 中,换行符只是空格而不是换行符(这是用
gt;
(X)HTML 标记表示的,也许这就是您遇到的问题 。

您还可以添加 和/或 来插入 CR/LF 字符

xml:space="preserve" has to work for all compliant XML parsers.

However, note that in HTML the line break is just whitespace and NOT a line break (this is represented with the <br /> (X)HTML tag, maybe this is the problem which you are facing.

You can also add and/or to insert CR/LF characters.

云朵有点甜 2024-08-28 18:38:03

浏览器不会可靠地向您显示空白区域。我推荐使用 Linux 'od' 命令来查看里面到底有什么。兼容的 XML 解析器将尊重您列出的所有方法。

A browser isn't going to show you white space reliably. I recommend the Linux 'od' command to see what's really in there. Comforming XML parsers will respect all of the methods you listed.

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