Remove Duplicate Words

Delete repeated words, keep the first of each. Optionally ignore case.

Frequently asked questions

How does it decide what is a duplicate?

It splits the text on whitespace and keeps only the first time each word appears. Later repeats are removed while the original order is preserved.

Does case matter?

By default no: 'The' and 'the' count as the same word. Untick 'ignore case' to treat differently-cased words as distinct.

Does punctuation affect it?

Punctuation stays attached to the word, so 'cat' and 'cat,' are seen as different tokens. Strip punctuation first if you want them merged.