how to count words in article?

ksharma

Regular Member
Joined
Nov 29, 2022
Messages
324
Reaction score
43
they are non english,also dont want to use online word counter
 
Grammarly - doesn’t matter the language, it will show your character count
 
go to Google Docs. select the desired fragment. Click "tools->statistics" and the number of words and number of characters will be shown there
 
selecting the text, automatically generate word counts of any language.
 
What OS or app you are using or any other details you can give us... especially if you dont want to do online?
You can always do it manually. ;)
 
The question is, why don't you want to use a word counter? Why would you want to spend valuable time counting words in an article manually? Just pop your article in a quality word counter, such as Grammerly or any free online application and move on.
 
Counting the words in an article can be done by using a word counter tool or manually by counting each word.
 
counting the words manually will be too much time consuming, please leverage on some online free tools that are designed for this purpose.
 
counting the words manually will be too much time consuming, please leverage on some online free tools that are designed for this purpose.
already said dont want online
 
Wordpress SEO Plugins such as Rank Math, Yoast SEO Automatically Shows You The Total number Of Words, If You Don't use wordpress, You can just use MS word /Grammarly To Find Out The Total word count,
 
already said dont want online
i guess you should employ someone then, if the pay is good you might just get more than one candidate.
In my opinion, I would strongly suggest Grammerly. It works simply perfect irrespective of languages, just copy the content and paste it there it will give you the exact count.
he said he doesn't want online
 
Google docs.
paste the content.
Ctrl+A

Ctrl+shift+C

Oops didnt see the online thing
in ms word its Ctrl+Shift+G
other than this you can use notepad++
Step 1. Launch Notepad++ from the Windows search menu and open the file that you want to check its word count.

Step 2. Navigate to the View tab and select Summary from the pop-up context menu.

Step 3. Now, you can see the Words Count in the Summary window. Also, you can double-click the Length option at the left bottom of the Notepad++ to show the total word count of the file.
 
Google docs.
paste the content.
Ctrl+A

Ctrl+shift+C

Oops didnt see the online thing
in ms word its Ctrl+Shift+G
the posted wants offline word count, so i've suggested he puts out an advert with a very attractive pay to enable him get candidates.
 
here is simple python3 script , it should do the trick, just replace "/path/to/text/file" with your text file and thats it

Python:
def counter(file_path):
    with open(file_path, 'r') as file:
        content = file.read()
        words = content.split()
        word_count = len(words)
        return word_count

file_path = '/path/to/text/file'
result = counter(file_path)


print(result)
 
Microsoft Word have a built-in word count tool that can be accessed by going to the Review tab and clicking on the "Word Count" button.
 
To find out the Total word count you can use Microsoft Word and Grammarly.
 
Back
Top