0
我想替換xml文件中的所有匹配節點。使用XSLT替換XML中的所有匹配節點
要原始的XML:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel>
<Button/>
</StackPanel>
</Window>
我申請以下XSLT:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="Button">
<AnotherButton><xsl:apply-templates select="@*|node()" /></AnotherButton>
</xsl:template>
</xsl:stylesheet>
但它產生相同的XML。我做錯了什麼?
**默認命名空間!** – 2012-08-10 08:21:06
您的按鈕是在一個命名空間,但是你的匹配模式說「匹配'按鈕'不在名稱空間中」 - 因此不匹配。 – 2012-08-10 08:22:08
是的,它現在有效。謝謝。有沒有辦法將這些空間添加到xslt中,以使其工作而不從原始xml中刪除名稱空間? – Peter17 2012-08-10 08:35:24