Difference between revisions of "LlToLower"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 3: Line 3:
|func=llToLower
|func=llToLower
|return_type=string|p1_type=string|p1_name=src
|return_type=string|p1_type=string|p1_name=src
|func_footnote
|func_footnote=The opposite is [[llToUpper]].
|func_desc
|func_desc
|return_text=that is '''src''' with all lower-case letters
|return_text=that is '''src''' with all lower-case letters
|spec
|spec
|caveats
|caveats*There is no llToProperCase in LSL.
|constants
|constants
|examples=
|examples=
 
<lsl>string msg = "I like CANDY!";
The opposite is [[llToUpper]].
 
There is no llToProperCase in LSL.
 
<lsl>
string msg = "I like CANDY!";
string p = llToLower(msg);
string p = llToLower(msg);
llOwnerSay(p);//Will say "i like candy!"
llOwnerSay(p);//Will say "i like candy!"</lsl>
</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llToUpper]]}}
|also_functions={{LSL DefineRow||[[llToUpper]]}}

Revision as of 04:42, 8 July 2008