csv

Parse and generate CSV text.

Import

import csv

Functions

csv.parse(str: str) -> [[str]]

Parse a CSV string into an array of rows, where each row is an array of string values.

csv.stringify(rows: [[str]]) -> str

Serialize an array of rows back into a CSV string.

Examples

scratch.xs