在XSL中,如何在处理文档之前将文档中的所有元素名称转换为小写?我们正在使用XSLT 2.0,我们已经尝试了以下但它不起作用…… A ITEMS ITEM/ ITEM/ /ITEMS/Axsl:transform xsl:template match="*" xsl:elem
<A> <ITEMS> <ITEM/> <ITEM/> </ITEMS> </A> <xsl:transform> <xsl:template match="*"> <xsl:element name="{lower-case(local-name())}"> <xsl:apply-templates/> </xsl:element> </xsl:template> //do work here... <xsl:apply-templates> ... </xsl:transform>它适用于Altova XMLSpy:
XSLT:
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" > <xsl:output exclude-result-prefixes="xsl xs" indent="yes"/> <xsl:template match="*"> <xsl:element name="{lower-case(local-name())}"> <xsl:apply-templates/> </xsl:element> </xsl:template> </xsl:stylesheet>
XML输入:
<?xml version="1.0" encoding="UTF-8"?> <A> <ITEMS> <ITEM/> <ITEM/> </ITEMS> </A>
XML输出:
<?xml version="1.0" encoding="UTF-8"?> <a> <items> <item/> <item/> </items> </a>