|
|
(One intermediate revision by the same user not shown) |
Line 1: |
Line 1: |
| {{LSL Header}}
| | #Redirect [[llDeleteSubList#Examples]] |
| | |
| <pre>
| |
| /////////////////////////////
| |
| // Author: Bird Raven
| |
| // For Use As OpenSource
| |
| /////////////////////////////
| |
| default
| |
| {
| |
| state_entry()
| |
| {
| |
| // Create a list of names
| |
| list names = ["Anthony", "Bob", "Charlie", "Dan", "Edgar", "Gerald"];
| |
|
| |
| // Now let's remove values at position 1 through 2.
| |
| names = llDeleteSubList(names, 1, 2);
| |
| | |
| // Result:
| |
| // list names = ["Anthony", "Dan", "Edgar", "Gerald"];
| |
|
| |
| // Now let's use an start number higher then our end number
| |
| names = llDeleteSubList(names, 3, 1);
| |
|
| |
| // Result:
| |
| // list names = ["Edgar"];
| |
| }
| |
| }
| |
| </pre>
| |
| | |
| | |
| {{Sort|llDeleteSubList Sample}}{{LSLC|Library}}{{LSLC|Examples}}
| |