Csv To Tsv API
POST
https://api.findutils.com/api/tools/csv-to-tsv/execute Convert comma-separated values to tab-separated values, the format spreadsheet paste, psql and mysql --batch expect. Quoted fields, embedded line breaks and doubled quotes are read per RFC 4180; the input delimiter is detected from the first line when not given. A cell that holds a tab, a quote or a line break is quoted the way Excel's tab-delimited export quotes it; every other cell is written bare. Values stay text. A leading byte order mark is dropped and blank lines are skipped.
Request body
application/json-
csv
string required
CSV input.
-
delimiter
string optional
Input field separator: ",", ";" or "|". Omit to detect it from the first line.
Example arguments
Verified{
"csv": "a,b\n1,\"x, y\""
} More Data tools
- Api Docs Generator Return API documentation generated from a list of endpoints, as Markdown (with table of contents, request/response examples) or as an OpenAP
- Bookmarks Html To Csv Convert a browser bookmarks.html export from Chrome, Firefox, Edge, Safari or any other browser that writes the Netscape bookmark format int
- Csv To Bookmarks Html Convert a CSV of links into a Netscape bookmarks.html file that Chrome, Firefox, Edge and Safari import.
- Csv To Json Parse CSV text into an array of objects keyed by the header row.
- Csv To Ndjson Convert CSV into newline-delimited JSON (NDJSON, JSON Lines, .jsonl): one JSON object per line, keyed by the header row.
- Csv To Sql Convert CSV text into SQL INSERT statements, optionally preceded by a CREATE TABLE.