Delimiter
Delimiter is a character or sequence that marks the boundary between units of data in text, source code, or data streams. Delimiters separate tokens, fields, or elements and help a parser determine where one unit ends and another begins. They can be single characters, such as a comma, space, tab, or newline, or multi-character sequences used in markup or data formats.
In text processing and data interchange, delimiters are used to demarcate fields in records. The comma is
In programming languages and compilers, delimiters include punctuation that signals grouping and boundaries, such as parentheses,
In command shells and data streams, delimiters separate commands, arguments, or records. The semicolon can terminate
Choosing a delimiter requires avoiding conflicts with data content, or implementing escaping or quoting to preserve
See also: tokenization, parsing, data serialization formats, quoting and escaping, line terminators, and delimiter-aware parsing.