ConcatenateStringsWithSpace

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

Concatenates Left and Right with a space between.

Parameters
NameTypeDescription
Left

An expression which evaluates to a string.

Right

An expression which evaluates to a string.

Example
variable tVar as String
put "This" && "is" && "a" && "sentence." into tVar -- tVar contains "This is a sentence."
Values
NameTypeDescription
return

The result of concatenating Left and Right with a space between.

Description

The result consists of the chars of Left followed by a space, and then the chars of Right.

Tagsstrings