CSV Viewer & Editor /

CSV Viewer & Editor Online

Open, edit, sort and search a CSV file. Nothing is uploaded — it is parsed on your own device.

Drop your CSV file here

Also opens .tsv, .tab and .txt.
Parsed in your browser — the file is never uploaded.

How it works

Read and edit a CSV without handing it to anyone

Most online CSV tools ask you to upload your file to a server before you can look at it. A copy of your spreadsheet — customer records, a bank export, whatever it happens to be — then lives on someone else's machine, under their retention policy rather than yours.

This page does the work in your browser instead. When you pick a file it is read straight from disk by the tab you already have open, parsed in memory, and drawn on screen. There is no account, nothing to delete afterwards, and no upload request carrying your data. You can check that yourself: open your browser's network panel and watch it while you open a file.

How it works

  1. You pick a file. Drop it on the page, or browse for it. Nothing is sent anywhere at this point — the file is simply handed to the tab.
  2. It is read and parsed on your device. The separator and the character encoding are worked out from the bytes themselves, so semicolon exports from Excel and non-UTF-8 files open without a setting to change.
  3. The rows are drawn on screen. Only the rows in view are rendered, which is why a file with tens of thousands of them still scrolls. Sorting, searching and editing all happen in memory.
  4. You download what you see. Your edits, your sort order and only the rows matching your search are written to a new file. The original is never modified.

Because every step happens in the tab, there is no server to trust and no copy of your data to delete afterwards.

You can also install it. Chrome and Edge show an install button in the address bar; on iPhone and iPad use Share → Add to Home Screen. Installed, the viewer itself is stored on your device, so it opens and reads files with no connection at all — and on desktop it can open a .csv straight from Finder or Explorer.

What it handles

  • Commas, semicolons, tabs and pipes. The separator is detected automatically, so European semicolon exports and tab-separated files open without changing a setting.
  • Quoted fields. Values wrapped in quotes can contain commas, escaped quotes and line breaks.
  • UTF-8, UTF-16 and Windows-1252. The encoding is detected from the bytes, so accented characters survive — including from Excel's default CSV export, which is not UTF-8. A file that is not UTF-8 says which encoding was found, so a wrong guess is visible rather than silent.
  • Sorting. Click a column header to sort by that column.
  • Column widths. Drag the edge of a header to resize it.
  • Search. Filter to matching rows across every column; press / to jump to the search box.
  • Editing. Type into any cell to correct or change a value before you download it.
  • Download. Save the rows you are looking at as CSV or JSON, or copy them to the clipboard.

Questions

Is my file uploaded anywhere?

No. It is read and parsed locally by JavaScript running in this tab, and never leaves your device.

How many rows can it open?

There is no fixed limit. Rows are only drawn as they scroll into view, so tens of thousands are comfortable. Very large files are bounded by your device's memory rather than by the page.

Can I edit the data and save it?

You can type into cells, and Download saves what is on screen as a new CSV or JSON file — including your edits, the sort order you chose, and only the rows matching your search. Your original file is never touched; nothing is written back to it, and closing the tab discards anything you have not downloaded.

Does it work offline?

Yes, once you install it — see How it works. The installed app keeps everything it needs on your device, so it opens and reads files with no connection. In an ordinary browser tab the page itself still has to load first; after that, reading your file needs no network either way.

What does it cost?

Nothing — it is free to use. The sponsor tiles on this page are paid placements.

No rows match that search. Clear the search to see all rows.

Discard your edits?

Starting over throws away your edits. Your file on disk is untouched either way, but anything you changed here has not been saved anywhere.