Don't click here unless you want to be banned.

LSL Wiki : concatenate

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawling22.us.archive.org

Concatenate

To concatenate, means to put together. In the context of LSL, concatenation applies to strings and lists - its how you fuse two strings or two lists together. It is done with the + operator.

Examples:
list a = ["Hello"];
list b = ["Goodbye"];
list ab = a + b; // ab is ["Hello", "Goodbye"]

string a = "Hello";
string b = "Goodbye";
string ab = a + b; // ab is "HelloGoodbye"
Why is the latter comment not orange?

String | List
Comments [Hide comments/form]
Attach a comment to this page: