dotdelimited
Dotdelimited refers to data in which individual fields or elements are separated by a period (.) character. The term is descriptive rather than a formal standard, and it is applied in contexts where a dot is chosen as a delimiter for flat text records or for expressing hierarchical keys in a compact string. Dotdelimited data can appear in configuration strings, log records, or simple export formats, and it is sometimes contrasted with comma- or tab-delimited formats.
Examples include flat records such as field1.field2.field3, or hierarchical identifiers used in software configuration, for example
Parsing such data requires careful handling of the delimiter. A straightforward split on '.' works when field
Limitations include ambiguity if the delimiter occurs in data, inconsistent practice across systems, and potential confusion