llList2CSV

From Second Life Wiki
Revision as of 00:18, 12 April 2007 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Summary

Function: string llList2CSV( list src );

Returns a string that is comma separated values from src.

• list src

Is functionally equivalent to llDumpList2String(src, ", ");
Do not confuse this function with the "Wikipedia logo"CSV format, it is not the CSV format.

Examples

default
{
    state_entry()
    {
        list my_list = [1, 2.0, "a string", llGetPos(), llGetRot(), llGetOwner()];
        llOwnerSay(llList2CSV(my_list));        
    }
}

See Also

Functions

•  llCSV2List
•  llDumpList2String
•  llParseString2List
•  llParseStringKeepNulls

Articles

•  Typecast

Deep Notes

Search JIRA for related Issues

Signature

function string llList2CSV( list src );