使用xslt将字符串解析为XML



我有一个需求,其中输入是一个格式良好的xml字符串。我需要遍历这个字符串得到一个特定的值

输入:

<Session>
   <Store>
      <Name>myname</name>
      <ContactId>1234</ContactId>
   </Store>
</Session>

我需要得到ContactId的值并将其存储在一个变量中…请帮助。

试试这个片段:-

<xsl:template match="/">
    <xsl:value-of select="/Session/Store/ContactId/text()"/>
</xsl:template>

你看起来像这样吗? -

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:msxsl="urn:schemas-microsoft-com:xslt"
                version="1.0">
    <xsl:variable name="Session">
    <Store>
            <Name>myname</name>
            <ContactId>1234</ContactId>
    </Store>
    </xsl:variable>
    <xsl:template match="/">
       <xsl:value-of select="msxsl:node-set($Session)/Store/ContactId/text()">
    </xsl:template>
</xsl:stylesheet>

相关内容

  • 没有找到相关文章

最新更新