如何使 xml 不自动替换 ASP.NET 中的 & 字符
有一种方法采用 Excel 格式制作的 *.xml 模板并向其中插入一些文本。 当我插入带有 \r\n 符号的文本时,Excel 会忽略刹车并将所有内容写入一行。事实证明,Excel 需要 xml 中的 "
"
而不是 "\r\n"
。所以我试图替换
NewText = NewText.Replace("\r\n", " ").Replace("\n", " ");
node["Data"].InnerText = NewText;
但后来我发现,所有 " "
都隐式更改为 "
"通过 XmlDocument。 我应该如何保存其中包含 "
"
的 xml?
There is a method wich takes the *.xml template made with Excel formatting and insert some text into it.
When I'm inserting text with \r\n symbols, Excel ignores the brakes and write all in one line. It turns out, that Excel needs the " "
in xml instead of "\r\n"
. So i'm trying to replace
NewText = NewText.Replace("\r\n", "
").Replace("\n", "
");
node["Data"].InnerText = NewText;
But then I see, that all the " "
are implicitly changed with "& ;#10;" by XmlDocument.
What should I do to save xml with " "
in it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 CDATA
http://www.w3schools.com/xml/xml_cdata.asp
Use CDATA
http://www.w3schools.com/xml/xml_cdata.asp