CSV Viewer
Open, sort, filter and convert CSV and TSV right in your browser.
What it does
Opens CSV and TSV data in the browser and lays it out as an aligned table you can actually read. The delimiter is detected automatically, so comma, tab, semicolon and pipe files all work without a setup step. Sort by any column, filter the rows with a single condition, and switch to column statistics, a JSON array, or clean comma-delimited CSV.
How to use it
Paste your data or drop a .csv or .tsv file onto the input. Type a column name into the sort box, with a leading minus for descending order, and a condition like status=active, price>100 or name~smith into the filter box. Pick the view you want and raise the row limit if you need to see more than the first 100 rows.
Why this one
Spreadsheet apps mangle leading zeros and rewrite dates the moment you open a file, and the CSV sites that promise a quick preview upload your file to a server first. This one parses locally, keeps every value exactly as written, and sorts and filters without touching the data.
FAQ
- Can it edit cells?
- Not yet. Right now it covers viewing, sorting, filtering and converting; cell editing arrives with the table panel.
- How big a file works?
- Hundreds of thousands of rows parse fine. The table, JSON and CSV views render only the row limit you set, up to 1000 at a time, so a large file stays readable instead of freezing the page.
- Is my file uploaded anywhere?
- No. Parsing happens entirely in the browser: your files and inputs never leave your device.