&

Typeoperator
DictionaryLCS
LibraryLiveCode Script
Syntax
<string1> & <string2>
Summary

Concatenates two strings.

Introduced1.0
OSmac, windows, linux, ios, android, web
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
string1

A literal string of characters (delimited with double quotes), or expressions that evaluate to strings.

string2

A literal string of characters (delimited with double quotes), or expressions that evaluate to strings.

Example
put "foo" & "bar" -- evaluates to "foobar"
local myVar, otherVar
put myVar & quote & "hello" & quote into otherVar
local theData
get offset(return & space, theData)
RelatedConstant: quote, return
Glossary: character, concatenate, delimit, double quote, evaluate, expression, literal string, operator, string
Function: offset
Description

Use the & operator to create a single string out of two or more parts. That is, string2 is appended immediately after string1 with no intervening space.

Tagstext processing