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]

Re: lower --> upper case


hi benj

---snip
Function: string translate(string, string, string)

         The translate function returns the first argument string with
occurrences of characters in the second argument string
         replaced by the character at the corresponding position in the
third argument string. For example,
         translate("bar","abc","ABC") returns the string BAr. If there is
a character in the second argument string with no character
         at a corresponding position in the third argument string (because
the second argument string is longer than the third
         argument string), then occurrences of that character in the first
argument string are removed. For example,
         translate("--aaa--","abc-","ABC") returns "AAA". If a character
occurs more than once in the second argument string,
         then the first occurrence determines the replacement character.
If the third argument string is longer than the second
         argument string, then excess characters are ignored.

--- snip

more on the official W3C Site (its really worth to read it !)
http://www.w3.org/TR/xpath.html

greetings

michael

"B. Dexheimer" wrote:

> Hi everybody !
>
> I got a xsl:variable with some text in lower case and I want to get it
> in upper case... how can I do that ?
> thanks in advance,
>
> BeNj.
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 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]