Difference between revisions of "LlToUpper"

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

Revision as of 04:42, 8 July 2008