Text Line Sorter
Sort a list of lines alphabetically, numerically, or by length, reverse their order, or shuffle them randomly.
Frequently asked questions
How does alphabetical sorting handle mixed case?+
It uses locale-aware comparison, which generally sorts "Apple" and "apple" together rather than putting all capitalized words before all lowercase ones.
What does "Numeric" sorting do with non-numeric lines?+
Lines that aren't valid numbers are treated as equal to each other for sorting purposes, so mixed content may not sort perfectly; use it on purely numeric lists for reliable results.
Is the shuffle truly random?+
It uses a Fisher-Yates shuffle with JavaScript's Math.random, which is unbiased for general use like randomizing a list order, though not cryptographically secure.