Concatenation
In formal language theory and computer programming, string concatenation is the operation of joining character strings end-to-end. For example, the concatenation of "snow" and "ball" is "snowball". In certain formalizations of concatenation theory, also called string theory, string concatenation is a primitive notion.
Syntax
In many programming languages, string concatenation is a binary infix operator, and in some it is written without an operator. This is implemented in different ways:- Overloading the plus sign
+Example from C#:"Hello, " + "World"has the value"Hello, World". - Dedicated operator, such as
.in PHP,&in Visual Basic, and||in SQL. This has the advantage over reusing+that it allows implicit type conversion to string. - string literal concatenation, which means that adjacent strings are concatenated without any operator. Example from C:
"Hello, " "World"has the value"Hello, World". - Interpolation, using a string interpolater to concatenate. Example from C#:
$"", wherestring hello = "Hello, ";andstring world = "World"; - Formatting, using a string formatter to concatenate. Example from Java:
String.format
||.Implementation
In programming, string concatenation generally occurs at run time, as string values are typically not known until run time. However, in the case of string literals, the values are known at compile time, and thus string concatenation can be done at compile time either via string literal concatenation or via constant folding, a potential run-time optimization.Concatenation of sets of strings
In formal language theory and pattern matching, the concatenation operation on strings is generalised to an operation on sets of strings as follows:For two sets of strings S1 and S2, the concatenation ''S1S''2 consists of all strings of the form vw where v is a string from S1 and w is a string from S2, or formally. Many authors also use concatenation of a string set and a single string, and vice versa, which are defined similarly by and. In these definitions, the string vw is the ordinary concatenation of strings v and w as defined in the introductory section.
For example, if, and, then FR denotes the set of all chess board coordinates in algebraic notation, while eR denotes the set of all coordinates of the kings' file.
In this context, sets of strings are often referred to as formal languages. The concatenation operator is usually expressed as simple juxtaposition.
Algebraic properties
The strings over an alphabet, with the concatenation operation, form an associative algebraic structure called a free monoid. The identity element is the null string.Sets of strings with concatenation and alternation form a semiring, with concatenation distributing over alternation. The identity for alternation is the empty set and identity for concatenation is the set containing just the null string.
Applications
Audio and telephony
In programming for telephony, concatenation is used to provide dynamic audio feedback to a user. For example, in a "time of day" speaking clock, concatenation is used to give the correct time by playing the appropriate recordings concatenated together. For example: "at the tone, the time will be", "eight", "thirty", "five", "and", "twenty", "five", "seconds".The recordings themselves exist separately, but playing them one after the other provides a grammatically correct sentence to the listener.
This technique is also used in number change announcements, voice mail systems, or most telephony applications that provide dynamic feedback to the caller.
Programming for any kind of computerised public address system can also employ concatenation for dynamic public announcements. The system would archive recorded speech of numbers, routes or airlines, destinations, times, etc. and play them back in a specific sequence to produce a grammatically correct sentence that is announced throughout the facility.