&&

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

Concatenates two strings and inserts a space between them.

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 "my" && "house" -- evaluates to "my house"
put field "First" && field "Last" into field "Name"
ask "Enter a name for this card."
set the name of this card to it && "Card"
RelatedKeyword: it
Constant: space
Command: ask, set
Glossary: character, concatenate, delimit, double quote, evaluate, expression, literal string, operator, string
Description

Use the && operator to combine two strings with a space between them, for example, to combine two words or phrases. That is, string1 && string2 results in a string consisting of string1, a space, and string2.

Tagstext processing