LlToLower
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Contents |
Description
Function: string llToLower( string src );| 98 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a string that is src with all lower-case letters
| • string | src |
Examples
string msg = "I like CANDY!"; string p = llToLower(msg); llOwnerSay(p);//Will say "i like candy!"

