Alphabetizer
Paste a list, get it sorted. With the options that actually come up — case, duplicates, articles, numbers.
How to use it
- 1 Paste your list
One item per line, or separated by commas — both are understood.
- 2 Set the options
Reverse order, ignore case, remove duplicates, strip leading articles.
- 3 Copy the result
One click copies the sorted list back to your clipboard.
The options, and when each matters
- Ignore case — on by default. Off, you get an ASCII-style sort where every capital precedes every lowercase letter, so Zebra comes before apple. That is occasionally what you want and almost never what you expected.
- Remove duplicates — compares by the same rule as the sort, so with "ignore case" on, "Apple" and "apple" count as one item.
- Ignore leading A, An, The — the library convention. Sorts "The Hobbit" under H while still printing the article.
- Natural number order — compares digit runs numerically, so Chapter 2 comes before Chapter 10 instead of after it.
- Reverse — Z to A. Applied after everything else.
Sorting is not one thing
"Alphabetical order" hides several genuinely different rules, and they disagree on real data. A phone book, a dictionary, a bibliography and a programming language's default sort will each order the same hundred names slightly differently — over capitals, over spaces inside names, over accented characters, over whether "McDonald" files as written or as "MacDonald".
The defaults here match what most people mean by the phrase: case-blind, accent-aware, spaces significant. Where your context has a stricter convention — a citation style, a catalogue standard — check the result against it rather than assuming.
Common questions
How are capitals handled?
What does "ignore leading A/An/The" do?
How are numbers sorted?
Does it keep blank lines?
Related tools
Other ways to attack the same letters.
Word Counter
Words, characters, sentences and reading time, live as you type.
Letter Frequency Counter
See which letters your text leans on, as a ranked chart.
Syllable Counter
Count syllables per word and per line — built for haiku and lyrics.
Palindrome Checker
Check whether a word or sentence reads the same both ways.