How can I find out what the most common two words that I used right after each other are from a block of text? In other words is there a tool online or offline (or code) where I can copy and paste text and it outputs my most used two word frequency like:
From most used to least:
"the cat" 2.9% "she said" 1.8% "went to" 1.2%
Thanks
Chunk up the text into two word pairs (use substr and strpos to help you)