Dictionary array to csv converter

[data/csv/Dictionary array to csv converter]


Formats a dictionary array as a csv string. Does not support multi-level dictionaries. Example:

  1. 'array' receives [ { "a":1 "b":2 }, { "a":11 "b":22 }, ]

  2. 'csv' sends "a,b 1,1 11,11"


Keywords: array, dictionary, csv, convert, stringify, serialize

Input ports

  • table: {string: (string or number or boolean)}[]

    Receives the array of dictionaries to format. Example: [ { "a":1 "b":2 }, { "a":11 "b":22 }, ]

Output ports

  • CSV: string

    The resulting csv string.

Last updated