llList2CSV

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Summary

Function: string llList2CSV( list src );

Returns a string that is comma separated values from src list. The source list may have separators other than commas before you start; the result will still be the same, a string with commas.

• list src

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

Examples

The comma separator is actually comma space.

list tmp01 = ["a",b,c,d,e]>;
string tmp02 = llList2CSV(tmp01);
//tmp02 will equal: "a, b, c, d, e"


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 );