这是我的xml:
<application name="Test Tables">
<test>
<xs:schema id="test" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
</xs:schema>
</test>
</application>
如何在不删除<application>
节点的情况下删除<test>
节点?
答案 0 :(得分:1)
好的,所以可能不是我最好的答案,但希望这符合你的需要,或者给你一个很好的起点。首先,我假设你正在使用C#。因此,我这样做的方法是使用您要删除的节点并选择其子节点并使用它们来创建新的XDocument。可能有一种更简洁的方式使用Linq实现这一点,但如果我能看到它,我该死的!无论如何,希望这会有所帮助:
var doc = XDocument.Load(@".\Test1.xml");
var q = (from node in doc.Descendants("application")
let attr = node.Attribute("name")
where attr != null && attr.Value == "Test Tables"
select node.DescendantNodes()).Single();
var doc2 = XDocument.Parse(q.First().ToString());
我使用此SO帖子作为我的向导:How to delete node from XML file using C#
快乐的编码,
干杯,
克里斯。
答案 1 :(得分:0)
使用XSLT你可以这样做:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="application">
<xsl:apply-templates select="test"/>
</xsl:template>
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
答案 2 :(得分:0)
那就是这个;
static void Main(string[] args)
{
string doc = @"
<application name=""Test Tables"">
<test>
<xs:schema id=""test"" xmlns="""" xmlns:xs=""http://www.w3.org/2001/XMLSchema"" xmlns:msdata=""urn:schemas-microsoft-com:xml-msdata"">
</xs:schema>
</test>
</application>
";
XDocument xDoc = XDocument.Parse(doc);
Console.Write(xDoc.ToString());
Console.ReadLine();
string descendants = xDoc.Descendants("application").DescendantNodes().First().ToString();
xDoc = XDocument.Parse(descendants);
Console.Write(xDoc.ToString());
Console.ReadLine();
}
虽然我有点好奇你为什么要这样做......