llToUpper
string llToUpper(string Text)Returns a string that is Text with all upper-case characters.
Parameters
-
Text(string)
string msg = "I like candy!";string p = llToUpper(msg);llOwnerSay(p); // Will say "I LIKE CANDY!"- There is no Linden Library
llToProperCasefunction that would return properly capitalized strings. However, user-created functions exist that provide this functionality, such asToNormal. - The function works for many characters outside the 7-bit ASCII range, especially Latin, Cyrillic, and Greek characters. However, not all characters tagged as “lowercase” in the Unicode specification are converted.