llToLower

From Second Life Wiki
Jump to navigation Jump to search

Summary

Function: string llToLower( string src );

Returns a string that is src with all lower-case letters

• string src

The opposite is llToUpper.

Caveats

  • There is no Linden Library "llToProperCase", which would return correctly capitalized strings; However, there are user functions that do this: ToNormal
  • The function also works for many characters outside the 7-bit ASCII range, especially latin, cyrillic and greek, but not all characters tagged as "uppercase" in the Unicode specification are converted.
All Issues ~ Search JIRA for related Bugs

Examples

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

See Also

Functions

•  llToUpper

Deep Notes

All Issues

~ Search JIRA for related Issues
   Unicode behavior of llToUpper and llToLower is inconsistent and broken

Signature

function string llToLower( string src );