Previous Topic: Arithmetic OperatorsNext Topic: Logical Operators


String Concatenation Operator

The interpreted language has the following operator for combining string values.

Operator

Description

+ (strings)

String concatenation

Use the string operator to combine, or concatenate, two or more character strings into a single character string. For example, the expression "ABCD" + "123" returns the concatenated string “ABCD123”.