LlList2CSV
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Function: string llList2CSV( list src );
| 195 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
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 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 |

