xsl-list
[Top] [All Lists]

Re: [xsl] Spaces to %20

2007-07-06 05:51:26
In XSLT 1, something like this:

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

In your case, you'd pass $kw to this template.

Hope this helps,

--PETE



                                                                           
             Kerry Kobashi                                                 
             <kkobashi(_at_)comcast                                             
             .net>                                                      To 
                                       
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com     
             07/06/2007 02:40                                           cc 
             AM                                                            
                                                                   Subject 
                                       [xsl] Spaces to %20                 
             Please respond to                                             
             xsl-list(_at_)lists(_dot_)mu                                       
      
              lberrytech.com                                               
                                                                           
                                                                           
                                                                           



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>
--~--



--~------------------------------------------------------------------
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>