Sort Lines
Sort a list alphabetically, numerically, by length, or shuffle it randomly. Ascending or descending, with optional deduplication.
Remove duplicate lines
Remove blank lines
0 lines.
Common questions
What does "Numeric" sort do with non-numbers?
Any line that doesn't start with a number is treated as 0 for sorting purposes, so pure numeric lines will sort correctly to the front or back and non-numeric lines will cluster together.
Does shuffle re-shuffle if I pick it again?
Yes, changing the dropdown to Shuffle (or re-selecting it) generates a fresh random order each time using a proper Fisher-Yates shuffle, not just a cosmetic re-sort.
Is my text sent anywhere?
No, sorting happens entirely in your browser. Nothing is uploaded.