Difference between revisions of "LlList2CSV"

From Second Life Wiki
Jump to navigation Jump to search
(Undo revision 76902 by Chaz Longstaff (Talk) example didn't compile)
(//added some white space.)
Line 2: Line 2:
|func_id=195|func_sleep=0.0|func_energy=10.0
|func_id=195|func_sleep=0.0|func_energy=10.0
|func=llList2CSV|return_type=string|p1_type=list|p1_name=src
|func=llList2CSV|return_type=string|p1_type=list|p1_name=src
|func_footnote=More precisely the values are separated with a comma and a space (", ").<br/>
|func_footnote=More precisely the values are separated with a comma and a space (", ").<br/><br/>
This function's functionality is equivalent to <code style="white-space: nowrap;">[[llDumpList2String]]('''src''', ", ");</code><br/>
This function's functionality is equivalent to <code style="white-space: nowrap;">[[llDumpList2String]]('''src''', ", ");</code><br/><br/>
Do not confuse this function with the {{Wikipedia|CSV|CSV}} format, it is ''not'' the CSV format.
Do not confuse this function with the {{Wikipedia|CSV|CSV}} format, it is ''not'' the CSV format.
To reverse the process use [[llCSV2List]].
To reverse the process use [[llCSV2List]].

Revision as of 10:26, 13 July 2008

Summary

Function: string llList2CSV( list src );

Returns a string of comma separated values taken in order from src.

• list src

More precisely the values are separated with a comma and a space (", ").

This function's functionality is equivalent to llDumpList2String(src, ", ");

Do not confuse this function with the "Wikipedia logo"CSV format, it is not the CSV format. To reverse the process use llCSV2List.

Examples

<lsl>default {

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

See Also

Functions

•  llCSV2List
•  llDumpList2String
•  llParseString2List
•  llParseStringKeepNulls

Articles

•  Typecast

Deep Notes

Search JIRA for related Issues

Signature

function string llList2CSV( list src );