gpt4 book ai didi

xml - 在 XML 属性中包含一个符号

转载 作者:数据小太阳 更新时间:2023-10-29 02:31:18 25 4
gpt4 key购买 nike

问题

我们要分配一个属性,其内容已经包含实体,如 "&
在此示例中,我们希望标题属性为 Stack "Stacky"Overflow:

$elem = $xml.CreateElement("Site");
$elem.SetAttribute("Title", "Stack "Stacky" Overflow");

但这会变成以下 XML 输出:

<Site Title="Stack &amp;quot;Stacky&amp;quot; Overflow" />


这种行为甚至在有关 XmlElement.SetAttribute Method 的文档中都有说明。 :

In order to assign an attribute value that contains entity references, the user must create an XmlAttribute node plus any XmlText and XmlEntityReference nodes, build the appropriate subtree and use SetAttributeNode to assign it as the value of an attribute.

最佳答案

解决方案

$elem = $xml.CreateElement("Site");

$elemAttr = $xml.CreateAttribute("Title");
$elemAttr.InnerXml = "Stack &quot;Stacky&quot; Overflow";

$elem.SetAttributeNode($elemAttr);

XML 输出:

<Site Title="Stack &quot;Stacky&quot; Overflow" />

关于xml - 在 XML 属性中包含一个符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13222291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com