JSON to CSV Converter vs Text Case Converter
JSON to CSV Converter
Convert a JSON array of objects to CSV, or parse CSV back to JSON.
Convert a JSON array of objects to a comma-separated values (CSV) file with a header row, or parse a CSV string back to a JSON array. Handles nested objects by dot-notation flattening (e.g. address.city), quoted fields with embedded commas or newlines, and configurable delimiters (comma, semicolon, tab).
Example input:
{
"input": "[{\"name\":\"Alice\",\"age\":30,\"city\":\"London\"},{\"name\":\"Bob\",\"age\":25,\"city\":\"Paris\"}]",
"mode": "json-to-csv",
"delimiter": ",",
"flatten": true
}Text Case Converter
Convert text between camelCase, snake_case, kebab-case, PascalCase, and 7 other naming conventions.
Convert any identifier or phrase between 11 naming conventions: camelCase, PascalCase, snake_case, SCREAMING_SNAKE_CASE, kebab-case, COBOL-CASE, dot.case, Title Case, Sentence case, lowercase, and UPPERCASE. Intelligently splits on whitespace, hyphens, underscores, dots, and camelCase boundaries so you can convert between any two formats in one step.
Example input:
{
"input": "myVariableName",
"to": "snake_case"
}| Feature | JSON to CSV Converter | Text Case Converter |
|---|---|---|
| Category | formatting | text |
| Inputs | input, mode, delimiter, flatten | input, to |
| Outputs | output, row_count, column_count, columns, mode, error | output, tokens, from_detected |