Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to read a txt file and add all words to a collection but dont add same words after write txt by the collection. how I do it. May I use how collection for different words.
Posted
Updated 17-Oct-12 3:54am
v2
Comments
[no name] 17-Oct-12 9:55am    
So check the collection for the presence of the words before you add them.

1 solution

We're not going to do your homework for you, but I will give you some pointers.
1) You'll need a collection object to put the words into as you read them.
2) Before you actually insert a found word into the collection, you'll need to make sure that the word doesn't already exist in the collection. (Hint: Use a built in method of the collection for this)
 
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