基本的XSLT问题 - 只想选择几个值而不是其他任何值

时间:2012-05-21 19:00:28

标签: xslt

有人可以告诉我XSLT我需要从下面的XML获取输出“LIVE | Customer is active”。我以为我得到了另一篇文章的答案,但结果却没有。

<?xml version="1.0"?>
<cns:customer xmlns:cns="https://services.cns.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://services.cns.com docs/xsd/customer.xsd">
    <cns:userId>1001</cns:userId>
    <cns:status>LIVE</cns:status>
    <cns:statusMessage>Customer is active</cns:statusMessage>
    <cns:type wholesale="true" suspended="false">W1</cns:type>
    <cns:properties>
        <cns:property>
            <cns:name>Name</cns:name>
            <cns:value>Bob</cns:value>
        </cns:property>
    </cns:properties>
</cns:customer>

谢谢,

1 个答案:

答案 0 :(得分:2)

如果您只想将XML转换为问题中提到的字符串,可以使用以下样式表:

<xsl:stylesheet version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:cns="https://services.cns.com">

  <xsl:output method="text"/>

  <xsl:template match="/*">
    <xsl:value-of select="concat(cns:status,'|',cns:statusMessage)"/>
  </xsl:template>
</xsl:stylesheet>