Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to find the count of each and every string in a text file. I found only the code for a small sentences but i need for a text file.
For eg : if a text file named sample contains
"There was a fisherman named Fisher
who fished for some fish in a fissure.Till a fish with a grin,pulled the fisherman in.
Now they're fishing the fissure for Fisher."
the output i am trying to get is :
There - 1
was-1
a - 4
fisherman - 2
.........
.
..
.
.
and so on. Please help me with this.
Posted

1 solution

Hi,

Here is the steps you can follow,

1) Read your file and separate with space.
2) Create one Array/List to store word and count of that word.
3) iterate through all the word that you have got in the array in step1.
4) Display your result.

Best luck
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900