string llDumpList2String(list src, string separator)
Concatenates all items in the
list src into a single string, placing the specified
separator between values.
llParseString2List performs the opposite function.
Example:
If you want to add to what comes out, it seems to Follow in this format
list foo = ["Bear","Cat","fish","bird"];
llSay(0,"11" + llDumpList2String(foo,"22+33") + "44");
//comes out 11Bear22+33Cat22+33fish22+33bird44
See also
llList2CSV and
ExampleListConversion.
This article wasn't helpful for you? Maybe the
related article at the LSL Portal is able to bring enlightenment.
Lists |
String