LlToLower - Second Life Wiki

LlToLower

From Second Life Wiki

(Redirected from LSL llToLower)
Jump to: navigation, search

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


The opposite is llToUpper.

Caveats

  • There is no llToProperCase in LSL.

Examples

string msg = "I like CANDY!";
string p = llToLower(msg);
llOwnerSay(p);//Will say "i like candy!"

See Also

Functions

•  llToUpper