llToLower

From Second Life Wiki
Revision as of 22:02, 7 May 2010 by Fred Gandt (talk | contribs) (Adding missing desc of entry and fixing link address.)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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. However, see "See Also" for a User Created function which may help.
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>

Useful Snippets

  • ToNormal - User Created Function returns a string which reads as normal text.

Notes

This may only work on characters in the ASCII7 range. SVC-3760

See Also

Functions

•  llToUpper

Articles

  • ToNormal - User Created Function returns a string which reads as normal text.

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