XSLT如何在层次结构中创建一个包含更多元素的字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XSLT如何在层次结构中创建一个包含更多元素的字符串相关的知识,希望对你有一定的参考价值。

我有这个XML源:

<HEADER>
      <ODL_CODE>589146586</ODL_CODE>
      <ADR_CODE>154116515</ADR_CODE>
      <MNV_HER>EUR</MNV_HER>
      <IKS>
         <TYPE_CU>BY</TYPE_CU>
         <ID_CU>549745</ID_CU>
         <NAME>Company name</NAME>
         <ADDRESS>Street 123, City</ADDRESS>
         <TEL>+45 789 632 548</TEL>
         <MAIL>mail@address.com</MAIL>
      </IKS>
      <IKS>
         <TYPE_CU>IV</TYPE_CU>
         <ID_CU>7894156</ID_CU>
         <NAME>Company name #2</NAME>
         <ADDRESS>Street 123, City #2</ADDRESS>
         <TEL>+45 789 632 548 #2</TEL>
         <MAIL>mail@address.com #2</MAIL>
      </IKS>
 </HEADER>

我想要这个输出:

 <HEADER>
      <ODL_CODE>589146586</ODL_CODE>
      <ADR_CODE>154116515</ADR_CODE>
      <MNV_HER>EUR</MNV_HER>
      <IKS>
         <TYPE_CU>BY</TYPE_CU>
         <ID_CU>549745</ID_CU>
         <NAME>Company name</NAME>
         <ADDRESS>Street 123, City</ADDRESS>
         <TEL>+45 789 632 548</TEL>
         <MAIL>mail@address.com</MAIL>
      </IKS>
      <IKS>
         <TYPE_CU>IV</TYPE_CU>
         <ID_CU>7894156</ID_CU>
         <NAME>Company name #2</NAME>
         <ADDRESS>Street 123, City #2</ADDRESS>
         <TEL>+45 789 632 548 #2</TEL>
         <MAIL>mail@address.com #2</MAIL>
      </IKS>
      <POZN_1>Name: Company name #2, Street: Street 123, City #2, TEL: +45 789 632 548 #2</POZN_1>
 </HEADER>

如何在XSLT中编写它?我在“value-of select”中尝试连接函数,但我在代码TYPE_CU,ID_CU等中遇到了2个元素的问题。它必须在TYPE_CU中通过“IV”进行识别,但我不知道为什么。

答案

您需要显示您尝试为值的串联执行的代码:

使用此代码希望对您有所帮助:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:xs="http://www.w3.org/2001/XMLSchema" 
    exclude-result-prefixes="xs" version="2.0">

    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/">
        <xsl:apply-templates/>
    </xsl:template>

    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="IKS[TYPE_CU='IV']">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
        <POZN_1><xsl:value-of select="concat('Name: ' , NAME, ', Street: ', ADDRESS, ', TEL: ', TEL)"/></POZN_1>
    </xsl:template>

</xsl:stylesheet>

以上是关于XSLT如何在层次结构中创建一个包含更多元素的字符串的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Team Foundation Server 2018 中创建层次结构?

使用 Python 或 XSLT 将复杂的 XML 转换为 CSV

在层次结构中创建类的指针数组

如何在R中创建列表的复杂层次结构

在XSLT中创建一个列表/数组

如何在 XSLT 中的特定树层次结构中选择标签?