This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RE: replace function


---- "James Fuller" <james dot fuller at o-idev dot com> wrote:

> <xsl:variable name="yourstring" select="somenode"/>
> <xsl:value-of select="translate($yourstring,',',', ')"/>
>
>
> should do it
>
> gl, jim fuller

Incorrect!

The above invocation of translate() replaces every single comma with
itself. Any character in the third argument, which does not match a
character from the second argument (has greater offset than the length
of the second argument) is simply ignored. So the space following the
comma in the third argument of the translate() specified above will be
simply ignored.

The following sources describe the behaviour of the translate()
function:

[1] Michael Kay's book

[2] The XPath 1.0 spec: http://www.w3.org/TR/xpath#function-translate


Hope this helped.




=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL

__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]