我是XSLT的新手,我需要在XLT1中使用String-join功能。我知道那里没有这样的功能,但我必须坚持使用XLST1。
我有一个xml文件,其中包含如下所示的流:
<?xml version="1.0" encoding="UTF-8" ?>
<CgPoints>
<CgPoint name="A">315.4 58.1 0</CgPoint>
<CgPoint name="B">315.4 58.2 0</CgPoint>
<CgPoint name="C">315.9 58.2 0</CgPoint>
<CgPoint name="D">315.9 58.1 0</CgPoint>
<CgPoint name="E">315.4 58.1 6</CgPoint>
<CgPoint name="F">315.4 58.2 6</CgPoint>
</CgPoints>
我需要xslt1中的字符串连接函数来创建这样的输出:
<?xml version="1.0" encoding="UTF-8"?>
<Placemark>
<Point>
<coordinates>315.4,58.1,0
315.4,58.2,0
315.9,58.2,0
315.9,58.1,0
315.4,58.1,6
315.4,58.2,6
</coordinates>
</Point>
</Placemark>
</kml>
请你写一个XSLT1代码,我可以将它作为库添加到Mapforce Altova中。 提前感谢您的帮助。
答案 0 :(得分:2)
I think we can have a recursive template like below:
<xsl:template match="/">
<Placemark>
<Point>
<coordinates>
<xsl:apply-templates select="CgPoints/CgPoint"/>
</coordinates>
</Point>
</Placemark>
</xsl:template>
<xsl:template match="CgPoint">
<xsl:call-template name="replaceSpaceWithComma">
<xsl:with-param name="s" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template name="replaceSpaceWithComma">
<xsl:param name="s" />
<xsl:choose>
<xsl:when test="string-length( substring-after( $s, ' ') )">
<xsl:call-template name="replaceSpaceWithComma">
<xsl:with-param name="s" select="concat(substring-before($s, ' '), ',',substring-after($s , ' ') )" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$s"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>