我需要替換kml文件中的Iconstyle href。我遇到了麻煩以下書面權XSLT:XSLT:根據文本替換所有href
僞代碼:
選擇InconStyle 發現的所有HREF如果HREF |文本()= 「Y」,然後替換爲「 x「(其中y和x是映射列表)
然後再次輸出整個文檔,並進行更改。
XML塊例如:
<Style id='sn_x_normal0'>
<IconStyle>
<color>FFFFFFFF</color>
<scale>0.75</scale>
**<Icon><href>/ge/icon1.gif</href></Icon>**
<hotSpot x='0.5' y='0' xunits='fraction' yunits='fraction'/>
</IconStyle>
<LineStyle>
<color>FFFFFFFF</color>
</LineStyle>
<PolyStyle>
<color>FFFFFFFF</color>
</PolyStyle>
<ListStyle>
</ListStyle>
</Style>
從上面的XML預期輸出
:
<Style id='sn_x_normal0'>
<IconStyle>
<color>FFFFFFFF</color>
<scale>0.75</scale>
**<Icon><href>/ge/icon2.gif</href></Icon>**
<hotSpot x='0.5' y='0' xunits='fraction' yunits='fraction'/>
</IconStyle>
<LineStyle>
<color>FFFFFFFF</color>
</LineStyle>
<PolyStyle>
<color>FFFFFFFF</color>
</PolyStyle>
<ListStyle>
</ListStyle>
</Style>
對XSLT嘗試:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="Document">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="Icon">
<xsl:variable name="newIcon">
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="href" />
<xsl:with-param name="replace" select="icon1.gif" />
<xsl:with-param name="by" select="icon2.gif" />
</xsl:call-template>
</xsl:variable>
<xsl:for-each select="Icon/href">
<xsl:value-of select="."/>
</xsl:for-each>
</xsl:template>
<xsl:template name="string-replace-all">
<xsl:param name="text" />
<xsl:param name="replace" />
<xsl:param name="by" />
<xsl:choose>
<xsl:when test="contains($text, $replace)">
<xsl:value-of select="substring-before($text,$replace)" />
<xsl:value-of select="$by" />
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="substring-after($text,$replace)" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
能否請您發表您的預期產出和嘗試XSLT。 – 2015-02-06 13:10:36