イムで空の属性を削除し、その後、IVEは働いてしまった、属性、しかし、私はどのようにここですべての要素をソートするためにしようとXSLT
空の属性を削除するには、ソートXSLT
である私の人生のために把握カント<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates >
<xsl:sort select="local-name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:template match="*[*]">
<xsl:copy>
<xsl:apply-templates select="@*" >
<xsl:sort select="local-name()" />
</xsl:apply-templates>
<xsl:apply-templates select="*" >
<xsl:sort select="local-name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
任意のヘルプ
属性はXMLでは順序がありませんので、順序は常に期待どおりです。 – Lucero
アルファベット順のソート順ではなく、インデックス位置にintrestされていない –
ポイントは、変換先(XmlWriter実装など)によっては、書き込まれる属性の順序が必ずしもその順序に一致する必要はありませんあなたが指定しています。私はあなたにこの事実を知らせるだけです。 – Lucero