Skip to content

Parsing and format tools

Parsing tools answer "is this valid" and "what does this mean" for the structured formats developers work with daily — JSON, YAML, XML, regex, cron expressions, JSONPath queries. The tools here cover validation (does this parse), transformation (convert between formats), querying (find values inside a structure), and human description (translate a cron expression or HTTP status code).

The JSON, YAML, and XML formatters and validators handle the structured-data trio: paste source, see syntax errors with line/column, get pretty- printed or minified output. The JSON ↔ CSV converter and YAML ↔ JSON converter handle bidirectional conversion for data interchange (RFC 4180 quoting on the CSV side, JSON_SCHEMA mode on the YAML side to avoid the Norway problem where "country: NO" parses as boolean false).

For querying, the regex tester shows match positions, capture groups, and replacement preview live as you type. The JSONPath tester applies JSONPath expressions to a JSON document and shows matched values with their paths. For reference: the HTTP status code lookup covers 60 status codes with RFC references and when-to-use descriptions; the cron expression builder validates 5-field cron syntax, describes it in plain English, and shows the next 5 run times so you can verify intent before pasting into a scheduler.

Tools in this category

Parse