0

次の XML を指定します。

<?xml version="1.0" encoding="UTF-8"?>
<root>
  <report>
    <![CDATA[<?xml version="1.0" encoding="UTF-8"?><whatever><title>GREETING</title><greeting>Hi</greeting><name>Dave</name></whatever>]]>
  </report>
</root>

XSL-T を使用して、この「埋め込まれた」XML を考慮するにはどうすればよいですか?

XSL-Transformations の後に取得したい出力の例は次のとおりです。

<?xml version="1.0" encoding="UTF-8"?>
<TransformedRoot>
  <data><html><head><title>GREETING</title></head><body><p>Hi, Dave!</p></body></html>
</TransformedRoot>

これが私が使用している標準の XSL-T であると仮定します。

<?xml version="1.0" encoding="utf-8"?>
<xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
    <xsl:template match="/root">
        <TransformedRoot>
           <data><!-- How do I get the elements here? --></data>
        </TransformedRoot>            
    </xsl:template>
4

1 に答える 1

1

Saxon 9 の商用版の場合:

<xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://saxon.sf.net/">
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
    <xsl:template match="/root">
        <TransformedRoot>
           <data>
             <xsl:apply-templates/>
           </data>
        </TransformedRoot>            
    </xsl:template>

<xsl:template match="report">
  <xsl:apply-templates select="saxon:parse(normalize-space(.))/node()"/>
</xsl:template>

<xsl:template match="whatever">
  <html>
     <head>
        <xsl:copy-of select="title"/>
      </head>
      <body>
        <p>
         <xsl:apply-templates/>
        </p>
      </body>
  </html>
</xsl:template>

<xsl:template match="greeting">
  <xsl:value-of select="concat(., ', ')"/>
</xsl:template>

<xsl:template match="name">
  <xsl:value-of select="concat(., '!')"/>
</xsl:template>
于 2013-10-17T10:57:37.190 に答える