ConcatenateStringsWithSpace |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Left> && <Right>
|
Associations | com.livecode.string |
Summary | Concatenates Left and Right with a space between.
|
Parameters | Name | Type | Description |
---|
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
|
Values | Name | Type | Description |
---|
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.
|
Tags | strings |