Concatenation
In formal language theory and computer programming, string concatenation is the operation of joining two character strings end-to-end. For example, the concatenation of "snow" and "ball" is "snowball".
In many programming languages, string concatenation is a binary infix operator. The "+" operator is often overloaded to denote concatenation for string arguments: "Hello, " + "World";
has the value "Hello, World".
Read more about Concatenation: Concatenation of Sets of Strings
Main Site Subjects
Related Phrases
Related Words