5 min read
2026-01-30
Sorting turns a chaotic list into an orderly one. This makes it easier to search, analyze and process data.
Standard alphabetical sorting. Suitable for names, cities, products.
Sort in reverse order. Convenient for viewing from the end of the list.
Sorts strings starting with numbers by their numeric value. "2" comes before "10" (as opposed to alphabetical).
Shuffles lines in random order. Useful for randomizing lists.
Insert text where each line is a separate element
Select sort type
Configure advanced settings
Get sorted result
| Parameter | Description |
|---|---|
| Remove duplicates | Leave only unique strings |
| Ignore case | A and a are considered the same |
| Remove empty lines | Skip empty lines |
See also: Remove duplicates, Case converter, Word counter