Parsing

Applies to: general

Parsing turns raw text or bytes into structured data according to rules, such as CSV rows, JSON objects, or source code tokens.

parts = "A,B,C".split(",")

See also: regex, validation