Difference between revisions of "LlToLower"

From Second Life Wiki
Jump to navigation Jump to search
(Copy Notes section from LlToUpper)
m
Line 1: Line 1:
{{LSL_Function
{{Issues/SVC-3760}}{{LSL_Function
|func_id=98|func_sleep=0.0|func_energy=10.0
|func_id=98|func_sleep=0.0|func_energy=10.0
|func=llToLower
|func=llToLower

Revision as of 18:50, 25 June 2009

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 in LSL.
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>

Notes

This may only work on characters in the ASCII7 range.

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