LSL Wiki Mirror 10-5-2006: llDumpList2String

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings ::
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:
list foo = ["a", "b", 5, ZERO_VECTOR];

llSay(0, llDumpList2String(foo, " + ")); // outputs: "a + b + 5 + <0.000000, 0.000000, 0.000000>"

See also llList2CSV and ExampleListConversion.


Lists | String
There is no comment on this page. [Display comments/form]