XDocument.Parse 在未要求时保留空白
我正在尝试从字符串加载 XDocument,该字符串包含文本节点中带有过多空格的 XML 元素。根据我对 MSDN 的 XDocument.Parse 方法的理解,它应该不保留空白。
那么,为什么在这个简单的例子中,空格仍然存在呢?
string xml = "<doc> <node>this should be collapsed</node> </doc>";
XDocument doc = XDocument.Parse(xml);
Console.WriteLine(doc.Root.Element("node").Value);
Console.WriteLine 调用的结果是每个单词之间有两个空格的短语。我预计每个之间只有一个空格。
I'm trying to load an XDocument from a string, which contains XML elements with excessive whitespace in their text nodes. From my understanding of the MSDN for the XDocument.Parse method, it's supposed to not preserve whitespace.
Why then, in this simple example, is whitespace still present?
string xml = "<doc> <node>this should be collapsed</node> </doc>";
XDocument doc = XDocument.Parse(xml);
Console.WriteLine(doc.Root.Element("node").Value);
The result of the Console.WriteLine call is the phrase with two spaces between each word. I expected only one space between each.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“不保留空格”意味着在加载
XDocument
时,任何仅包含空格的文本节点都将被忽略。您的 xml 字符串可以用以下树表示:
如果您检查 doc.Root.Value 的内容,您将看到该字符串
如果您在“保留空白”的同时加载该字符串,
然后再次检查
doc.Root.Value
的内容,您将看到该字符串"Not preserving whitespace" means that any text nodes that contain only whitespace will be ignored while loading the
XDocument
.Your xml string can be represented by the following tree:
If you inspect the contents of
doc.Root.Value
, you will see the stringIf you instead load the string while "preserving whitespace",
and again inspect the contents of
doc.Root.Value
, you will see the string