LlToLower
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: string llToLower( string src );| 98 | Function ID |
| 0.0 | Forced Delay |
| 10.0 | Energy |
Returns a string that is src with all lower-case letters
| • string | src |
The opposite is llToUpper.
Caveats
Examples
string msg = "I like CANDY!"; string p = llToLower(msg); llOwnerSay(p);//Will say "i like candy!"
See Also
Functions
| • | llToUpper |
Deep Notes
All Issues
~ Search JIRA for related Issues| |
|
SVC-3760 | A | Unicode behavior of llToUpper and llToLower is inconsistent and broken |
Signature |
|---|
function string llToLower( string src ); |
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

