Line Sorter

Paste lines of text and sort them A–Z, Z–A, by length, numerically, or shuffle them.

Copied

Last updated

Sorted text will appear here.
Copied

About this tool

A–Z and Z–A use standard locale-aware string comparison; "Numeric" extracts the first number found in each line and sorts by that value, so a list like item 9, item 10, item 2 sorts as 2, 9, 10 rather than as plain text (where "10" would sort before "2"). Lines with no number sort to the end. Shuffle uses an unbiased Fisher–Yates shuffle, not a naive sort-by-random-comparator, which can otherwise produce skewed results.

Nothing you paste here is sent to a server — the entire tool runs as JavaScript in your browser tab.