A–Z, Z–A, and Length Sorting
Three sort modes cover the most common ordering needs for any line-based list.
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Sort text lines alphabetically, reverse, or by length
Sorting a list by hand is tedious enough at 10 items and completely impractical at 100. Alphabetizer instantly sorts any line-based list in ascending alphabetical order, descending reverse-alphabetical order, or by line length. It also supports case-insensitive sorting so 'Zebra' and 'apple' sort by letter value rather than ASCII code point (which would put all uppercase words before all lowercase words). A deduplicate-while-sorting option removes any duplicate entries in the same pass. Alphabetizer works on any type of line-delimited content: word lists, city names, product SKUs, HTML option lists, file name inventories, bibliography entries — anything where imposing a consistent sort order makes the content easier to navigate, compare, or publish.
Three sort modes cover the most common ordering needs for any line-based list.
Sort 'Zebra', 'apple', and 'Mango' by letter without uppercase entries jumping to the top.
Remove duplicate entries in the same operation so you get a clean, sorted, unique list in one step.
Sort shortest-to-longest or longest-to-shortest for formatting, typography, or data inspection tasks.
Only the order of lines changes — the content of each line is never modified.
Sorts thousands of lines in milliseconds using the browser's native sort algorithm.
Input: Mango Apple Zebra Banana apricot
Output: A–Z case-insensitive: Apple apricot Banana Mango Zebra
Input: Hello Hi Goodbye OK
Output: Shortest first: OK Hi Hello Goodbye
Input: cat dog bird fish
Output: Z–A: fish dog cat bird