|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: How to Tag Several Words in a Given String
> <xsl:function name="f:replace-all">
> <xsl:param name="input" as="xs:string"/>
> <xsl:param name="words-to-replace" as="xs:string*"/>
> <xsl:param name="replacement" as="xs:string"/>
> <xsl:sequence select="if (exists($words-to-replace))
> then f:replace-all(replace($in, $words-to-replace,
> $replacement))
> else $input"/>
> </xsl:function>
>
I made the mistake of tidying the code just before posting it and messed it
up. What I meant to say was:
<xsl:function name="f:replace-all">
<xsl:param name="input" as="xs:string"/>
<xsl:param name="words-to-replace" as="xs:string*"/>
<xsl:param name="replacement" as="xs:string"/>
<xsl:sequence select="if (exists($words-to-replace))
then f:replace-all(replace($in, $words-to-replace[1],
$replacement),
remove($words-to-replace,1),
$replacement)
else $input"/>
</xsl:function>
Michael Kay
http://www.saxonica.com
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








