listKeyCase
Revision as of 19:49, 6 May 2010 by Ugleh Ulrik (talk | contribs)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: list ListKeyCase( list src, integer case );Returns a list that is a copy of src with all lower-case letters or all upper-case letters.
• list | src | – | List to change case | |
• integer | case | – | 1 is Upper, 0 is Lower. |
See also: Lists
Specification
<lsl>list ListKeyCase(list src,integer case){ list new; integer b = llGetListLength(src); integer i; if (case){
do new += [llToUpper(llList2String(src,i))]; while (b>++i); return new;
}else{
do new += [llToLower(llList2String(src,i))]; while (b>++i); return new;
} } </lsl>
Examples
<lsl> list test = ["Apples","Bananas","Cranberrys","Donuts"]; list newtest = ListKeyCase(test,0);
//newtest now is ["apples","bananas","cranberrys","donuts"]</lsl>