xsl-list
[Top] [All Lists]

[xsl] Spaces to %20

2007-07-05 23:41:01
Hi all,

I need a way to convert all spaces into %20 for the anchor tag href below:

<xsl:for-each select="/article/keywords/keyword">
  <xsl:variable name="kw" select="."/>
    <a href="/search.php?keyword={$kw}" title="{$kw}">
       <xsl:value-of select="$kw" />
    </a>
  <xsl:if test="position()!=last()">, </xsl:if>
</xsl:for-each>


<?xml version="1.0" encoding="UTF-8"?>
<article>
   <keywords>
      <keyword>Cascading Style Sheet</keyword>
      <keyword>Hypertext Markup Language</keyword>
   </keywords>
</article>


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>