我是XSLT的新手,我需要XLT1中的字符串连接函数。我知道那里没有这样的功能,但我必须坚持使用 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中。提前感谢您的帮助。
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>