2012-06-05 76 views
0

我需要用XML輸出中的空格來替換每個其他逗號。現在,我有經度和緯度,看起來像這樣:如何用XSL中的空格替換逗號

-0.52437106918239,0.391509433962264,-0.533805031446541,0.430817610062893,0 
-0.547955974842767,0.427672955974843, 

我需要在我的XML輸出座標看起來像這樣:

-0.52437106918239 0.391509433962264, -0.533805031446541 0.430817610062893,0 
-0.547955974842767 0.427672955974843 

如何使用XSLT來做到這一點?這是我的xsl:

<?xml version="1.0" encoding="ISO-8859-1"?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
xmlns:kml="http://www.opengis.net/kml/2.2"> 
<xsl:output method="text"/> 

<xsl:template match="/"> 
<xsl:apply-templates select="kml:kml/kml:Document/kml:Placemark/kml:Polygon 
/kml:outerBoundaryIs/kml:LinearRing"/> 
</xsl:template> 

    <xsl:template match="kml:LinearRing"> 
"POLYGON((<xsl:value-of select="kml:coordinates"/>))" 
</xsl:template> 
</xsl:stylesheet> 

回答

1

在XSLT 2.0中,這將是微不足道的。你可以使用replace()

在XSLT 1.0中,您可以使用像這樣的模板。調用您的列表中需要每隔一個逗號替換的轉換空間模板。

<xsl:template name="convert-space"> 
    <xsl:param name="text"/> 
    <xsl:choose> 
    <xsl:when test="contains($text,',')"> 
     <xsl:value-of select="substring-before($text,',')"/> 
     <xsl:value-of select="' '"/> 
     <xsl:call-template name="convert-comma"> 
     <xsl:with-param name="text" select="substring-after($text,',')"/> 
     </xsl:call-template> 
    </xsl:when> 
    <xsl:otherwise> 
     <xsl:value-of select="$text"/> 
    </xsl:otherwise> 
    </xsl:choose> 
</xsl:template> 

<xsl:template name="convert-comma"> 
    <xsl:param name="text"/> 
    <xsl:choose> 
    <xsl:when test="contains($text,',')"> 
     <xsl:value-of select="substring-before($text,',')"/> 
     <xsl:value-of select="','"/> 
     <xsl:call-template name="convert-space"> 
     <xsl:with-param name="text" select="substring-after($text,',')"/> 
     </xsl:call-template> 
    </xsl:when> 
    <xsl:otherwise> 
     <xsl:value-of select="$text"/> 
    </xsl:otherwise> 
    </xsl:choose> 
</xsl:template> 
相關問題