,

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

Concatenates (joins) two strings and inserts a comma between them.

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

The operands string1 and string2 are literal strings of characters (delimited with double quotes), or expressions that evaluate to strings.

string2
Example
put "first","second" -- evaluates to "first,second"
get lastName,firstName  middleName
Values
NameTypeDescription
The result

The result of the , operator is a string consisting of string1, a comma, and string2.

RelatedConstant: comma
Glossary: string, concatenate, operator
Keyword: string
Description

Use the , operator to combine two strings with a comma between them.

The , operator is equivalent to comma a/. In other words,

"this" , "that"

does the same thing as

"this"  comma  "that"

Tagstext processing