ConcatenateStrings

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Left> & <Right>
Associationscom.livecode.string
Summary

Concatenates Left and Right.

Parameters
NameTypeDescription
Left

An expression which evaluates to a string.

Right

An expression which evaluates to a string.

Example
variable tVar as String
put "car" & "pet" into tVar -- tVar contains "carpet"
Values
NameTypeDescription
return

The result of concatenating Left and Right.

Description

The result consists of the chars of Left followed by those of Right.

Tagsstrings