How to count the number of words in the pdf document

Hi All;
I need how to count the words in the pdf document or text file

@vivekktr
Read the PDF or text file,
Then split the output variable text on the basis of space as delimiter and find the length.
intWordCount = outputText.Split(" "). Length

thanks bro its work fine

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.