Sort a list of lines alphabetically in either direction, or by line length — handy for tidying lists, imports, and references.
How it works
- Paste your unsorted list into the editor.
- Select your sorting method (A to Z, Z to A, or Length).
- Copy the perfectly ordered list.
Frequently asked questions
Is the sort case-sensitive?
It uses locale comparison, which generally groups upper and lower case of the same letter together.
Can I sort numbers?
Lines sort as text, so numeric lists may order lexically (10 before 2). For pure numbers, the length sort can help.
Are blank lines kept?
No — empty lines are dropped so the sorted output is clean.