THE WORKBENCH / Useful Horizons
CSV Table Lab
Inspect a small CSV extract in your browser, see its rows and empty cells, and export explicit CSV or JSON without guessing dates or numbers.
Read our Privacy policy for how tool inputs and visit data are handled, and our Terms of use for reuse permissions and resource limitations.
LOCAL WORKSPACE
No upload, account or automatic saving. Your pasted text stays in this page’s memory. Exports are created only when you choose a download.
03 / THE INSPECTION
A table, without guesses.
- Data records
- 4
- Columns
- 4
- Input bytes
- 160
Spaces and line breaks inside cells are preserved. Empty cells are marked for visibility. Detected record breaks: 4 CRLF, 0 LF, 0 CR.
| Row | item_id | item | quantity | note |
|---|---|---|---|---|
| 1 | 0017 | Pencils, blue | 12 | Shelf A |
| 2 | 0018 | Notebook | 3 | Label says "recycled" |
| 3 | 0019 | Paper | 0 | First line Second line |
| 4 | 0020 | Folder | empty | empty |
Inspect the CSV export text
"item_id","item","quantity","note" "0017","Pencils, blue","12","Shelf A" "0018","Notebook","3","Label says ""recycled""" "0019","Paper","0","First line Second line" "0020","Folder","",""
Inspect the JSON export text
{
"columns": [
"item_id",
"item",
"quantity",
"note"
],
"rows": [
[
"0017",
"Pencils, blue",
"12",
"Shelf A"
],
[
"0018",
"Notebook",
"3",
"Label says \"recycled\""
],
[
"0019",
"Paper",
"0",
"First line\nSecond line"
],
[
"0020",
"Folder",
"",
""
]
]
}