因此,考虑到这个 XML:
<root>
<table>
<tr>
<td>asdf</td>
<td>qwerty</td>
<td>1234 <p>lorem ipsum</p> 5678</td>
</tr>
</table>
<root>
...我怎样才能把它变成这样?
<root>
<table>
<tr>
<td><BLAH>asdf</BLAH></td>
<td><BLAH>qwerty</BLAH></td>
<td><BLAH>1234 <p>lorem ipsum</p> 5678</BLAH></td>
</tr>
</table>
</root>
然后,每个实例都 <td>
将包含该 <BLAH>
元素,并且每个实例的内容都 <td>
将在新节点中。
...到目前为止,我有这个 XSL,它
<td>
用新节点包装每个元素,但在外面而不是在里面:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes" method="xml"/>
<xsl:strip-space elements="*"/>
<!-- identity rule -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="table//td">
<BLAH>
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</BLAH>
</xsl:template>
</xsl:stylesheet>
...这产生了这种不希望的结果:
<root>
<table>
<tr>
<BLAH><td>asdf</td></BLAH>
<BLAH><td>qwerty</td></BLAH>
<BLAH><td>1234 <p>lorem ipsum</p> 5678</td></BLAH>
</tr>
</table>
</root>
在http://xslt.online-toolz.com/tools/xslt-transformation.php测试