Promptles
Data & Transformation

Parsing

beginner

Definition

Reading raw text and extracting structured information from it. Parsing turns unstructured data (a string, a file, a response body) into something your code can work with: objects, arrays, numbers, dates.

In the wild

JSON.parse('{"name":"Alice","age":30}') reads a raw JSON string and turns it into a JavaScript object you can access with obj.name and obj.age. Without parsing, it's just a blob of text your code can't use.

More from Data & Transformation