Skip to content

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!"
  • There is no Linden Library llToProperCase function 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.