I would like to count the frequency of words (excluding some keywords) in a string and sort them DESC. So, how can i do it?
In the following string...
This is stackoverflow. I repeat stackoverflow.
Where the excluding keywords are
ExKeywords() ={"i","is"}
the output should be like
stackoverflow
repeat
this
P.S. NO! I am not re-designing google! :)