consider that i am getting a HTML format string and want to read the number of words & characters, Consider, i am getting,
var HTML = '<p>BODY Article By Archie(Used By Story Tool)</p>';
now i want to get number of words and characters
above html will look like:
BODY Article By Archie(Used By Story Tool)
IMPORTANT
- i want to avoid html tags while counting words or character
- avoid keywords like
** **
etc.. - Ex. words and character should be counted of : (for current example)
BODY Article By Archie(Used By Story Tool)
please help,
Thank You.