llToLower
string llToLower(string Text)Returns a string that is Text with all lower-case characters.
Parameters
-
Text(string)
string msg = "I like CANDY!";string p = llToLower(msg);llOwnerSay(p); // Will say "i like candy!"Caveats
Section titled “Caveats”- There is no Linden Library
llToProperCasefunction that would return correctly capitalized strings. However, user functions exist that provide this functionality, such as ToNormal. - The function works for many characters outside the 7-bit ASCII range, especially Latin, Cyrillic, and Greek characters, but not all characters tagged as “uppercase” in the Unicode specification are converted.
See Also
Section titled “See Also”- llToUpper - Converts text to uppercase