Ссылаясь на другие сообщения, которые я пробовал ниже xslt, он генерирует ожидаемый o / p:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="vApos">'</xsl:variable>
<xsl:template match="*[not(*)]">
<xsl:if test="not(*)">
<xsl:apply-templates select="ancestor-or-self::*" mode="path"/>
<xsl:value-of select="concat('=',$vApos,.,$vApos)"/>
<xsl:text>
</xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="*" mode="path">
<xsl:value-of select="concat('/',name())"/>
<xsl:apply-templates select="@*" mode="path"/>
</xsl:template>
<xsl:template match="@*" mode="path">
<xsl:value-of select="concat('[@',name(), '=',$vApos,.,$vApos,']')"/>
</xsl:template>
</xsl:stylesheet>
Пример i / p xml:
<root id='1'>
<elemA>one</elemA>
<elemA attribute1='first' attribute2='second'>two</elemA>
<elemB attribute='1'>three</elemB>
<elemA >four</elemA>
<elemC attribute='c'>
<elemB attribute='2'>five</elemB>
<elemB attribute='3'>five</elemB>
</elemC>
</root>
Вывод:
/root[@id='1']/elemA='one'
/root[@id='1']/elemA[@attribute1='first'][@attribute2='second']='two'
/root[@id='1']/elemB[@attribute='1']='three'
/root[@id='1']/elemA='four'
/root[@id='1']/elemC[@attribute='c']/elemB[@attribute='2']='five'
/root[@id='1']/elemC[@attribute='c']/elemB[@attribute='3']='five'