LlToUpper

From Second Life Wiki

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

Contents

Description

Function: string llToUpper( string src );
97 Function ID
0.0 Delay
10.0 Energy

Returns a string that is src with all upper-case characters.

• string src

The opposite is llToLower.

Caveats

  • There is no llToProperCase in LSL.

Examples

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

Notes

This may only work on characters in the ASCII7 range.

See Also

Functions

•  llToLower
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.
Personal tools