Extract unique words from a text online
Extract unique words from a text online.
Copy and paste your text to receive a list of unique words.
This can be especially helpful when you need to extract unique words from a text.
This pipeline is using the following processors:
- Trim - remove leading and trailing spaces
- SplitLines - split text into words using regular expression \W
- Case - convert words to lowercase
- Remove duplicate lines - to extract unique words
- Sort - sort words in ascending order
- Filter - filter out empty line
Text input
1
2
3
4
5
6
7
8
Lines: 8Chars: 482
Generated output
1
Lines: 1Chars: 0
Text transformation pipeline
Trim
Trim Both
Split lines
Split text into lines
Case
Lower case
Remove duplicate lines
Remove duplicate lines
Sort
Ascending sort
Filter
Match lines with regexp '.' (case insensitive)