Remove paste artifacts
Clean extra spaces and blank lines from text copied out of documents, spreadsheets, or logs.
🔒 Browser-side processing
Trim whitespace, remove duplicates, sort lines, and slugify in one pass.
Guide
Clean repeated editing tasks such as trimming whitespace, removing duplicate lines, sorting, and slugifying text in the browser.
Clean extra spaces and blank lines from text copied out of documents, spreadsheets, or logs.
Use duplicate removal and sorting to review keyword, URL, email, or config-value lists more easily.
Turn titles into URL-friendly slug drafts for document paths and filenames.
Workflow
Examples
Input
banana
apple
banana
cherry
apple
Output
apple
banana
cherry
Input
Hello World – 2026 Edition!
Output
hello-world-2026-edition
Troubleshooting
Text copied from the web often carries non-breaking spaces (U+00A0) or zero-width characters. They look identical but compare and sort differently.
Slugs usually keep ASCII only, so a Korean or Japanese title can be stripped entirely. If you plan to use non-ASCII URLs, keep the encoded original instead.
Review
Duplicate removal and sorting can change order. Preserve the source when sequence matters.
Automatic slugs are drafts. Before publishing URLs, adjust brand names, acronyms, and search intent manually.
Related