xsl-list
[Top] [All Lists]

Re: [xsl] replacing of characters based on position

2010-11-15 17:03:48
On 11/15/2010 4:44 PM, ram wrote:
Hi,
       I have xsl variable which holds the following uuid value 
(550e8400-e29b-41d4-a716-446655440000) which has '-' at 9-14-19-24 positions.
    I want to go these positons 9-14-19-24 and replace the characters '-' 
with zero's.
     Is there any function such as replace(position values,character,replace 
character) available in xslt.


Can you just replace '-' with '0'?
<xsl:value-of select="translate('550e8400-e29b-41d4-a716-446655440000',
'-', '0')" />

Lars


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