partisan: replace string

Beitrag lesen

Hallo Thomas, hat versucht dein Beispiel anzuwenden aber jetzt gibt er mir garnichts mehr aus.

so sieht mein code jetzt aus:

  
<xsl:stylesheet ......  
  
	<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>  
  
  
        <xsl:template  match="content">  
              <xsl:call-template name="replace-solution">  
                     <xsl:with-param name="platform_url" select="www.test.de"/>  
              </xsl:call-template>  
         </xsl:template>  
  
  
<xsl:template name="replace-solution">  
	 <xsl:param name="platform_url" />  
	  <xsl:param name="Solution" >  
	           <xsl:value-of select="instruction/solution"/>  
     </xsl:param>  
	 <xsl:variable name="textafterbreak" select="substring-after($Solution, $platform_url)"/>  
	 <xsl:choose>  
	  <xsl:when test="contains($Solution, $platform_url)">  
	          <xsl:value-of select="substring-before($Solution, $platform_url)"/>  
	  </xsl:when>  
	  <xsl:otherwise>  
	   <xsl:value-of select="$Solution"/>  
	  </xsl:otherwise>  
	 </xsl:choose>  
	</xsl:template>  
</xsl:stylesheet>  
  
  

grüße und danke für die schnelle antwort!