LlToLower
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Summary
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 |
The opposite is llToUpper.
Examples
string msg = "I like CANDY!"; string p = llToLower(msg); llOwnerSay(p);//Will say "i like candy!"
Deep Notes
Issues
~ Search JIRA for related Issues| | | SVC-3760 | [c] | Unicode behavior of llToUpper and llToLower is inconsistent and broken |
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

