Text / Line Sorter
Paste a list to sort its lines alphabetically (A-Z or Z-A), by line length, or numerically by the first number found in each line.
Input
Sorted
Ad space
Frequently asked questions
How does numeric sorting work if a line has no number?+
Lines with no number always sort to the end, regardless of direction, since there's nothing to compare numerically.
Is alphabetical sorting case-sensitive?+
No, it uses locale-aware comparison, which sorts the way a person naturally would (treating "Apple" and "apple" as adjacent), rather than raw character-code order that would separate them.
Can I remove empty lines before sorting?+
Yes, there's a toggle for that, on by default, so blank lines don't end up scattered through the sorted result.