LlToUpper
From Second Life Wiki
(Redirected from LSL llToUpper)
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
Function: string llToUpper( string src );| 97 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a string that is src with all upper-case characters.
| • string | src |
The opposite is llToLower.
Examples
string msg = "I like candy!"; string p = llToUpper(msg); llOwnerSay(p);//Will say "I LIKE CANDY!"
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

