Corrupt a CSV File Online
Corrupt a .csv file online for free. Breaks delimiters, quoting and encoding so spreadsheet apps and data pipelines reject the file.
- Kein Upload
- Keine Größenbegrenzung
- Keine Anmeldung
Beschädigen Sie Ihre CSV-Datei
Abgestimmt auf .csv, .tsv, funktioniert aber ebenso mit jedem anderen Format.
Warum sich CSV-Dateien nur schwer richtig beschädigen lassen
CSV has no schema, no header requirement and no terminator, so almost any byte sequence is arguably a valid CSV file. The formats that matter are the ones the consumer expects (consistent column counts, balanced quotes and decodable text) and those are what get destroyed here.
Was dieses Werkzeug zerstört
- Delimiter structure. Commas and line breaks are overwritten, so rows no longer split into a consistent number of columns.
- Quote balance. Double quotes are broken up, leaving quoted fields permanently unterminated and swallowing subsequent rows.
- Encoding validity. Invalid UTF-8 sequences are injected, so strict readers fail before parsing.
- The header row. The opening bytes are destroyed, so column names are lost and type inference fails.
Was Sie danach sehen
| Anwendung | Verhalten |
|---|---|
| Microsoft Excel | Imports as a single garbled column, or warns that the file cannot be read. |
pandas read_csv | Raises ParserError: Error tokenizing data or a Unicode error. |
| Google Sheets | Import produces unreadable rows or fails outright. |
| Database bulk loaders | Abort the load and report a malformed record. |
Häufige Gründe dafür
- Testing that a bulk import rejects a bad file instead of loading partial rows.
- Verifying a data pipeline reports the failing file and row rather than dropping records.
- Checking that a CSV upload form validates before writing to a database.
- Producing malformed fixtures for a parser test suite.
So beschädigen Sie eine CSV-Datei
- Ziehen Sie Ihre .csv-Datei in das Feld oben, oder klicken Sie zum Auswählen.
- Belassen Sie die Stufe auf Standard, sofern Sie nicht nur teilweisen Schaden wollen (Light) oder Wiederherstellungssoftware überwinden müssen (Heavy).
- Klicken Sie auf Datei beschädigen. Die Verarbeitung läuft auf Ihrem Gerät und ist daher fast sofort fertig.
- Laden Sie das Ergebnis herunter. Standardmäßig behält es den ursprünglichen Dateinamen und die Byte-Länge.
Häufige Fragen zu CSV
Will Excel still open it?
Excel will usually open something, because it treats any text file as importable. What it shows is a single column of mojibake rather than your data.
Is a partially corrupted CSV worse than a fully broken one?
For testing, often yes, a file that loads 400 of 500 rows before failing is the case that catches silent data loss. Use Light level for that.
Does it work on TSV and pipe-delimited files?
Yes. Any delimiter-separated text file uses the same profile.
Will the row count stay the same?
No. Line breaks are among the bytes overwritten, so the file no longer has a predictable row structure.