LlDumpList2String
From Second Life Wiki
(Redirected from LSL llDumpList2String)
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
Function: string llDumpList2String( list src, string separator );| 245 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a string that is the list src converted to a string with separator between the entries.
| • list | src | |||
| • string | separator |
Examples
default { state_entry() { list my_list = [1, 2.0, "a string", llGetOwner()]; llOwnerSay("<" + llDumpList2String(my_list,"><") + ">"); } }

