llToLower

From Second Life Wiki
Revision as of 22:32, 7 May 2010 by Strife Onizuka (talk | contribs) (already indicated in bugs section.)
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 llToProperCase, which would capitalize the first letter of a word, in LSL but there is a user functions that does this: ToNormal
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>string msg = "I like CANDY!"; string p = llToLower(msg);

llOwnerSay(p);//Will say "i like candy!"</lsl>

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 );