What is the easiest way to split all lines into individual words, all in a list (one word per line), then sort them?
I can manage the list part (with some difficulty) and everything LOOKS LIKE it is a list with one word per line, but it won't sort that way (probably because it isn't REALLY separate lines - just looks that way.)
There has to be an easy way to do this and a way to macro it.
Create list, sort
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
- talleyrand
- Posts: 624
- Joined: Mon Jul 21, 2003 6:56 pm
- Location: Kansas City, MO, USA
- Contact:
Search and replace, enable regular expressions.
Search for: [[:space:]]
Replace with: \n
You might want a cleanup pass
Search for: \n\n
Replace with: \n
Punctuation will be outstanding, not sure if you want that stripped out.
Finally, F9 will do the sorting
Search for: [[:space:]]
Replace with: \n
You might want a cleanup pass
Search for: \n\n
Replace with: \n
Punctuation will be outstanding, not sure if you want that stripped out.
Finally, F9 will do the sorting
I choose to fight with a sack of angry cats.