这是我能想到的两种方法。
XML 输入
<test>
<row>
<entry>data</entry>
<entry>dataaaa</entry>
<entry>data</entry>
</row>
<row>
<entry>datadata</entry>
<entry>datad</entry>
<entry>da</entry>
</row>
</test>
第一个 XSLT 2.0
这使用文字空间来表示列宽。它还substring()
用来剥离它不需要的东西......
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="colwidths" as="element()">
<colwidths>
<col val=" "/>
<col val=" "/>
<col val=" "/>
</colwidths>
</xsl:variable>
<xsl:template match="row">
<xsl:apply-templates/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="entry">
<xsl:variable name="currPos" select="position()"/>
<xsl:value-of select="concat('/',.,substring($colwidths/col[$currPos]/@val,string-length(.)))"/>
</xsl:template>
</xsl:stylesheet>
第二个 XSLT 2.0
这类似,但使用数字表示列宽并用于xsl:for-each
输出所需的空格...
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="colwidths" as="element()">
<colwidths>
<col val="17"/>
<col val="9"/>
<col val="23"/>
</colwidths>
</xsl:variable>
<xsl:template match="row">
<xsl:apply-templates/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="entry">
<xsl:variable name="currPos" select="position()"/>
<xsl:value-of select="concat('/',.)"/>
<xsl:for-each select="0 to xs:integer($colwidths/col[$currPos]/@val - string-length(.))">
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
这两个都产生以下输出:
/data /dataaaa /data
/datadata /datad /da