如果以下XML文件中Enabled
为False
,我需要XSLT将Name
的值更改为XYZ
。
我的XML文件是:
<MyRoot>
<Category>
<Name>XYZ</Name>
<Location>mylocation</Location>
<Enabled>True</Enabled>
</Category>
<Category>
<Name>ABC</Name>
<Location>mylocation1</Location>
<Enabled>True</Enabled>
</Category>
<Category>
<Name>DEF</Name>
<Location>mylocation2</Location>
<Enabled>True</Enabled>
</Category>
</MyRoot>
答案 0 :(得分:1)
我将如何处理它:
<强> XSLT 强>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Category[Name='ABC']/Enabled">
<Enabled>False</Enabled>
</xsl:template>
</xsl:stylesheet>
<强>输出强>
<MyRoot>
<Category>
<Name>XYZ</Name>
<Location>mylocation</Location>
<Enabled>False</Enabled>
</Category>
<Category>
<Name>ABC</Name>
<Location>mylocation1</Location>
<Enabled>True</Enabled>
</Category>
<Category>
<Name>DEF</Name>
<Location>mylocation2</Location>
<Enabled>True</Enabled>
</Category>
</MyRoot>