输入XML
:
<author-group>
<author>
<given-name>aaa</given-name>
<surname>bbb</surname>
<orfid>a</orfid>
<e-address type="email">abc@gmail.com</e-address>
</author>
<affiliation>chennai</affiliation>
</author-group>
输出XML
应为:
<contrib-group content-type="all">
<contrib contrib-type="author">
<name>
<given-name>aaa</given-name>
<surname>bbb</surname>
</name>
<xref ref-type="aff" rid="af1"/>
<xref ref-type="email" rid="em1"/>
</contrib>
<aff id="af1">chennai</aff>
<ext-link id="em1">abc@gmail.com</ext-link>
</contrib-group>
有人可以帮助我使用XSLT将输入XML
转换为输出XML
吗?
答案 0 :(得分:0)
您好,欢迎来到Stackoverflow。
假设您的转义标记只是一个错误,以下XSL将生成您询问的确切输出。
然而,其中没有“一代”,因为我不知道你的意思。如果需要,请提出更清晰的问题。
<?xml version="1.0" encoding="utf-8"?>
<author-group>
<author>
<given-name>aaa</given-name>
<surname>bbb</surname>
<orfid>a</orfid>
<e-address type="email">abc@gmail.com</e-address>
</author>
<affiliation>chennai</affiliation>
</author-group>
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="author-group">
<xsl:element name="contrib-group">
<xsl:attribute name="content-type">
<xsl:value-of select="'all'"/>
</xsl:attribute>
<xsl:element name="contrib">
<xsl:attribute name="contrib-type">
<xsl:value-of select="'author'"/>
</xsl:attribute>
<xsl:element name="name">
<xsl:copy-of select="./author/given-name"/>
<xsl:copy-of select="./author/surname"/>
</xsl:element>
<xsl:element name="xref">
<xsl:attribute name="ref-type">
<xsl:value-of select="'aff'"/>
</xsl:attribute>
<xsl:attribute name="rid">
<xsl:value-of select="'af1'"/>
</xsl:attribute>
</xsl:element>
<xsl:element name="xref">
<xsl:attribute name="ref-type">
<xsl:value-of select="'email'"/>
</xsl:attribute>
<xsl:attribute name="rid">
<xsl:value-of select="'em1'"/>
</xsl:attribute>
</xsl:element>
</xsl:element
<xsl:element name="aff">
<xsl:attribute name="id">
<xsl:value-of select="'af1'"/>
</xsl:attribute>
<xsl:value-of select="./affiliation"/>
</xsl:element>
<xsl:element name="ext-link">
<xsl:attribute name="id">
<xsl:value-of select="'em1'"/>
</xsl:attribute>
<xsl:value-of select="./author/e-address"/>
</xsl:element>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
<?xml version="1.0" encoding="utf-8"?>
<contrib-group content-type="all">
<contrib contrib-type="author">
<name>
<given-name>aaa</given-name>
<surname>bbb</surname>
</name>
<xref ref-type="aff" rid="af1" />
<xref ref-type="email" rid="em1" />
</contrib>
<aff id="af1">chennai</aff>
<ext-link id="em1">abc@gmail.com</ext-link>
</contrib-group>