CONCAT
Concat, short for concatenation, is the operation of joining two or more sequences to form a new sequence. It applies to strings, arrays, lists, or byte sequences, and is fundamental in text processing, data formatting, and assembling data programmatically. The term derives from Latin con- “together” and catena “chain.”
In programming languages, concatenation is expressed by various operators or functions. In many languages the plus
Efficiency and implementation considerations often center on the mutability of the sequence type. Strings are typically
Applications of concatenation include building file paths and URLs, formatting messages, templating, and assembling data records.