listKeyCase

From Second Life Wiki
Jump to navigation Jump to search

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>