使用 XDocument 时如何保留属性值中的空格?

发布于 2024-09-27 18:55:52 字数 159 浏览 5 评论 0原文

我处理 xml,其属性值中包含制表符(“\t”)和换行符(“\n”)。当我使用 XDocument.Parse() 解析它时,制表符和换行符会转换为空格,即使使用 LoadOptions.PreserveWhitespace 参数也是如此。

如何获取具有原始属性值的 XDocument?

I process xml which contains tabs ("\t") and line breaks ("\n") in its attributes values. When I parse it using XDocument.Parse(), the tabs and line breaks are converted to spaces, even with the LoadOptions.PreserveWhitespace parameter.

How can I get a XDocument with original attributes values?

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

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

发布评论

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

评论(2

战皆罪 2024-10-04 18:55:52

您可以使用简单的 XmlTextReader 来解析 xml 字符串。它将保留属性值中的所有空格:

string textToParse = "<e a=\"x\ty\rz\n\" />" ;
using (var sr = new StringReader(textToParse)) {
    using (var xr = new XmlTextReader(sr)) {
        var xd = XDocument.Load(xr);
        System.Console.WriteLine(xd.ToString());
    }
}

将输出

<e a="x	y
z
" />

You could use a simple XmlTextReader to parse the xml-string. It will preserve all whitespace within attribute values:

string textToParse = "<e a=\"x\ty\rz\n\" />" ;
using (var sr = new StringReader(textToParse)) {
    using (var xr = new XmlTextReader(sr)) {
        var xd = XDocument.Load(xr);
        System.Console.WriteLine(xd.ToString());
    }
}

will output

<e a="x	y
z
" />
吖咩 2024-10-04 18:55:52

我没有找到真正的解决方案,所以我最终得到了一个快速的解决方案。肮脏:

xml = xml.Replace("\t", "	").Replace("\r", "
");

总比没有好……

I did not find a real solution, so I ended up with a quick & dirty :

xml = xml.Replace("\t", "	").Replace("\r", "
");

better than nothing...

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