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.
- Yükleme yok
- Boyut sınırı yok
- Kayıt yok
CSV dosyanızı bozun
.csv, .tsv için ayarlandı ve diğer tüm biçimlerde de aynı şekilde çalışır.
CSV dosyalarını düzgün bozmak neden zordur
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.
Bu araç neyi yok eder
- 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.
Sonrasında ne göreceksiniz
| Uygulama | Davranış |
|---|---|
| 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. |
Bunu yapmanın yaygın nedenleri
- 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.
CSV dosyası nasıl bozulur
- .csv dosyanızı yukarıdaki kutuya bırakın veya seçmek için tıklayın.
- Kısmi hasar (Light) istemiyorsanız ya da kurtarma yazılımını alt etmeniz (Heavy) gerekmiyorsa seviyeyi Standard bırakın.
- Dosyayı boz düğmesine basın. İşlem cihazınızda yapılır, bu yüzden neredeyse anında biter.
- Sonucu indirin. Varsayılan olarak özgün dosya adını ve bayt uzunluğunu korur.
CSV hakkında sık sorulanlar
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.