LlDumpList2String - Second Life Wiki

LlDumpList2String

From Second Life Wiki

(Redirected from LSL llDumpList2String)
Jump to: navigation, search

Contents

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,"><") + ">");        
    }
}

Notes

Use llParseString2List or llParseStringKeepNulls to undo the process.