YAML → CSV
Convert data in YAML format to CSV format. As in the example below, paste YAML on the left and the CSV result appears instantly on the right.
Example
YAML
- id: 1
name: Ada
role: admin
- id: 2
name: Linus
role: editorCSV
id,name,role
1,Ada,admin
2,Linus,editorHow to Convert
- Select YAML as the source format and CSV as the target format.
- Paste your YAML data into the input box on the left.
- Copy or download the CSV result generated on the right.
Notes
- Every conversion happens inside the browser, and the data you enter is never sent to a server.
- Since CSV can express only a tabular structure, nested objects and arrays are stored inside cells as JSON strings.