Count number of times a word is found in txt file



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-3















Currently have this simple code written, trying to figure out why it's not counting specific words every time.



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;
int main()

int t = 0;
int a1 = 0;
string a[100];
ifstream food;

food.open("food.txt");

if (food.fail())

cout << "File can't open" << endl;



else
cout << "File successfully opened" << endl;

int i = 0;

while (!food.eof())

// Tomato
food >> a[i];
if (a[i] == "tomato")

t = t + 1;

i++;

// Apple
food >> a[i];
if (a[i] == "apple")

a1 = a1 + 1;

i++;

cout << "Amount of Tomatos: " << t << endl;
cout << "Amount of Apples: " << a1 << endl;



The text file I'm using:



apple
apple
tomato
apple
tomato
tomato


The output:



File successfully opened
Amount of Tomatoes: 2
Amount of Apples: 2


The purpose is to find the amount of each food found in the list. I'm currently only using two kinds of food but will have many more.










share|improve this question
























  • Why is iostream::eof inside a loop condition considered wrong?

    – πάντα ῥεῖ
    Nov 13 '18 at 22:20






  • 2





    i suggest to read it to your rubber duck. It should raise an eyebrow or two once you reach the "I read one food, if its an apple I increment the apple counter, then I read the next food, if its a tomato, I increment the tomato counter, then I repeat" part...

    – user463035818
    Nov 13 '18 at 22:24












  • After re-looking at it and looking at other comments, I realized what I was doing wrong with the if and else statements. Does sound odd now that I realize my mistake.

    – Cas_
    Nov 13 '18 at 22:38











  • Since the quantity of words is unknown at run-time, use std::vector<std::string> instead of an array. Arrays can overflow. Large arrays may be a waste of memory.

    – Thomas Matthews
    Nov 13 '18 at 23:47

















-3















Currently have this simple code written, trying to figure out why it's not counting specific words every time.



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;
int main()

int t = 0;
int a1 = 0;
string a[100];
ifstream food;

food.open("food.txt");

if (food.fail())

cout << "File can't open" << endl;



else
cout << "File successfully opened" << endl;

int i = 0;

while (!food.eof())

// Tomato
food >> a[i];
if (a[i] == "tomato")

t = t + 1;

i++;

// Apple
food >> a[i];
if (a[i] == "apple")

a1 = a1 + 1;

i++;

cout << "Amount of Tomatos: " << t << endl;
cout << "Amount of Apples: " << a1 << endl;



The text file I'm using:



apple
apple
tomato
apple
tomato
tomato


The output:



File successfully opened
Amount of Tomatoes: 2
Amount of Apples: 2


The purpose is to find the amount of each food found in the list. I'm currently only using two kinds of food but will have many more.










share|improve this question
























  • Why is iostream::eof inside a loop condition considered wrong?

    – πάντα ῥεῖ
    Nov 13 '18 at 22:20






  • 2





    i suggest to read it to your rubber duck. It should raise an eyebrow or two once you reach the "I read one food, if its an apple I increment the apple counter, then I read the next food, if its a tomato, I increment the tomato counter, then I repeat" part...

    – user463035818
    Nov 13 '18 at 22:24












  • After re-looking at it and looking at other comments, I realized what I was doing wrong with the if and else statements. Does sound odd now that I realize my mistake.

    – Cas_
    Nov 13 '18 at 22:38











  • Since the quantity of words is unknown at run-time, use std::vector<std::string> instead of an array. Arrays can overflow. Large arrays may be a waste of memory.

    – Thomas Matthews
    Nov 13 '18 at 23:47













-3












-3








-3








Currently have this simple code written, trying to figure out why it's not counting specific words every time.



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;
int main()

int t = 0;
int a1 = 0;
string a[100];
ifstream food;

food.open("food.txt");

if (food.fail())

cout << "File can't open" << endl;



else
cout << "File successfully opened" << endl;

int i = 0;

while (!food.eof())

// Tomato
food >> a[i];
if (a[i] == "tomato")

t = t + 1;

i++;

// Apple
food >> a[i];
if (a[i] == "apple")

a1 = a1 + 1;

i++;

cout << "Amount of Tomatos: " << t << endl;
cout << "Amount of Apples: " << a1 << endl;



The text file I'm using:



apple
apple
tomato
apple
tomato
tomato


The output:



File successfully opened
Amount of Tomatoes: 2
Amount of Apples: 2


The purpose is to find the amount of each food found in the list. I'm currently only using two kinds of food but will have many more.










share|improve this question
















Currently have this simple code written, trying to figure out why it's not counting specific words every time.



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;
int main()

int t = 0;
int a1 = 0;
string a[100];
ifstream food;

food.open("food.txt");

if (food.fail())

cout << "File can't open" << endl;



else
cout << "File successfully opened" << endl;

int i = 0;

while (!food.eof())

// Tomato
food >> a[i];
if (a[i] == "tomato")

t = t + 1;

i++;

// Apple
food >> a[i];
if (a[i] == "apple")

a1 = a1 + 1;

i++;

cout << "Amount of Tomatos: " << t << endl;
cout << "Amount of Apples: " << a1 << endl;



The text file I'm using:



apple
apple
tomato
apple
tomato
tomato


The output:



File successfully opened
Amount of Tomatoes: 2
Amount of Apples: 2


The purpose is to find the amount of each food found in the list. I'm currently only using two kinds of food but will have many more.







c++ fstream






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 22:31









Remy Lebeau

343k19268462




343k19268462










asked Nov 13 '18 at 22:18









Cas_Cas_

32




32












  • Why is iostream::eof inside a loop condition considered wrong?

    – πάντα ῥεῖ
    Nov 13 '18 at 22:20






  • 2





    i suggest to read it to your rubber duck. It should raise an eyebrow or two once you reach the "I read one food, if its an apple I increment the apple counter, then I read the next food, if its a tomato, I increment the tomato counter, then I repeat" part...

    – user463035818
    Nov 13 '18 at 22:24












  • After re-looking at it and looking at other comments, I realized what I was doing wrong with the if and else statements. Does sound odd now that I realize my mistake.

    – Cas_
    Nov 13 '18 at 22:38











  • Since the quantity of words is unknown at run-time, use std::vector<std::string> instead of an array. Arrays can overflow. Large arrays may be a waste of memory.

    – Thomas Matthews
    Nov 13 '18 at 23:47

















  • Why is iostream::eof inside a loop condition considered wrong?

    – πάντα ῥεῖ
    Nov 13 '18 at 22:20






  • 2





    i suggest to read it to your rubber duck. It should raise an eyebrow or two once you reach the "I read one food, if its an apple I increment the apple counter, then I read the next food, if its a tomato, I increment the tomato counter, then I repeat" part...

    – user463035818
    Nov 13 '18 at 22:24












  • After re-looking at it and looking at other comments, I realized what I was doing wrong with the if and else statements. Does sound odd now that I realize my mistake.

    – Cas_
    Nov 13 '18 at 22:38











  • Since the quantity of words is unknown at run-time, use std::vector<std::string> instead of an array. Arrays can overflow. Large arrays may be a waste of memory.

    – Thomas Matthews
    Nov 13 '18 at 23:47
















Why is iostream::eof inside a loop condition considered wrong?

– πάντα ῥεῖ
Nov 13 '18 at 22:20





Why is iostream::eof inside a loop condition considered wrong?

– πάντα ῥεῖ
Nov 13 '18 at 22:20




2




2





i suggest to read it to your rubber duck. It should raise an eyebrow or two once you reach the "I read one food, if its an apple I increment the apple counter, then I read the next food, if its a tomato, I increment the tomato counter, then I repeat" part...

– user463035818
Nov 13 '18 at 22:24






i suggest to read it to your rubber duck. It should raise an eyebrow or two once you reach the "I read one food, if its an apple I increment the apple counter, then I read the next food, if its a tomato, I increment the tomato counter, then I repeat" part...

– user463035818
Nov 13 '18 at 22:24














After re-looking at it and looking at other comments, I realized what I was doing wrong with the if and else statements. Does sound odd now that I realize my mistake.

– Cas_
Nov 13 '18 at 22:38





After re-looking at it and looking at other comments, I realized what I was doing wrong with the if and else statements. Does sound odd now that I realize my mistake.

– Cas_
Nov 13 '18 at 22:38













Since the quantity of words is unknown at run-time, use std::vector<std::string> instead of an array. Arrays can overflow. Large arrays may be a waste of memory.

– Thomas Matthews
Nov 13 '18 at 23:47





Since the quantity of words is unknown at run-time, use std::vector<std::string> instead of an array. Arrays can overflow. Large arrays may be a waste of memory.

– Thomas Matthews
Nov 13 '18 at 23:47












1 Answer
1






active

oldest

votes


















2














There are several problems with your code.



  • using eof() in a loop incorrectly. You can't check eof() before performing a read operation first.


  • using an array without bounds checking. For that matter, you don't need an array at all.


  • skipping words, which is why you are not counting everything you are expecting. Let's take the very first line, apple. Since it is not a "tomato", you skip it and read the next word in the file, which is "apple", so you count it. But you didn't count the 1st apple at all.


You need to do something more like this instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;

int main()

int tomatoes = 0;
int apples = 0;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)

// Tomato
if (s == "tomato")
++tomatoes;

// Apple
else if (s == "apple")
++apples;


cout << "Amount of Tomatos: " << tomatoes << endl;
cout << "Amount of Apples: " << apples << endl;

return 0;



Alternatively, as @user463035818 mentioned in comments, you can use a std::map instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>
#include <map>

using namespace std;

int main()

map<string, int> foods;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)
foods[s]++;


for (map<string, int>::iterator iter = foods.begin(); iter != foods.end(); ++iter)
cout << "Amount of " << iter->first << ": " << iter->second << endl;


/* or, if you are using C++11 or later...
for (auto &item : foods)
cout << "Amount of " << item.first << ": " << item.second << endl;

*/

return 0;






share|improve this answer




















  • 1





    or use a map as OP will have many more types of food

    – user463035818
    Nov 13 '18 at 22:31











  • I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

    – Cas_
    Nov 13 '18 at 22:32











  • Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

    – user4581301
    Nov 13 '18 at 22:32












  • @user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

    – Cas_
    Nov 13 '18 at 22:36











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53290364%2fcount-number-of-times-a-word-is-found-in-txt-file%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














There are several problems with your code.



  • using eof() in a loop incorrectly. You can't check eof() before performing a read operation first.


  • using an array without bounds checking. For that matter, you don't need an array at all.


  • skipping words, which is why you are not counting everything you are expecting. Let's take the very first line, apple. Since it is not a "tomato", you skip it and read the next word in the file, which is "apple", so you count it. But you didn't count the 1st apple at all.


You need to do something more like this instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;

int main()

int tomatoes = 0;
int apples = 0;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)

// Tomato
if (s == "tomato")
++tomatoes;

// Apple
else if (s == "apple")
++apples;


cout << "Amount of Tomatos: " << tomatoes << endl;
cout << "Amount of Apples: " << apples << endl;

return 0;



Alternatively, as @user463035818 mentioned in comments, you can use a std::map instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>
#include <map>

using namespace std;

int main()

map<string, int> foods;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)
foods[s]++;


for (map<string, int>::iterator iter = foods.begin(); iter != foods.end(); ++iter)
cout << "Amount of " << iter->first << ": " << iter->second << endl;


/* or, if you are using C++11 or later...
for (auto &item : foods)
cout << "Amount of " << item.first << ": " << item.second << endl;

*/

return 0;






share|improve this answer




















  • 1





    or use a map as OP will have many more types of food

    – user463035818
    Nov 13 '18 at 22:31











  • I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

    – Cas_
    Nov 13 '18 at 22:32











  • Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

    – user4581301
    Nov 13 '18 at 22:32












  • @user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

    – Cas_
    Nov 13 '18 at 22:36















2














There are several problems with your code.



  • using eof() in a loop incorrectly. You can't check eof() before performing a read operation first.


  • using an array without bounds checking. For that matter, you don't need an array at all.


  • skipping words, which is why you are not counting everything you are expecting. Let's take the very first line, apple. Since it is not a "tomato", you skip it and read the next word in the file, which is "apple", so you count it. But you didn't count the 1st apple at all.


You need to do something more like this instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;

int main()

int tomatoes = 0;
int apples = 0;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)

// Tomato
if (s == "tomato")
++tomatoes;

// Apple
else if (s == "apple")
++apples;


cout << "Amount of Tomatos: " << tomatoes << endl;
cout << "Amount of Apples: " << apples << endl;

return 0;



Alternatively, as @user463035818 mentioned in comments, you can use a std::map instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>
#include <map>

using namespace std;

int main()

map<string, int> foods;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)
foods[s]++;


for (map<string, int>::iterator iter = foods.begin(); iter != foods.end(); ++iter)
cout << "Amount of " << iter->first << ": " << iter->second << endl;


/* or, if you are using C++11 or later...
for (auto &item : foods)
cout << "Amount of " << item.first << ": " << item.second << endl;

*/

return 0;






share|improve this answer




















  • 1





    or use a map as OP will have many more types of food

    – user463035818
    Nov 13 '18 at 22:31











  • I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

    – Cas_
    Nov 13 '18 at 22:32











  • Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

    – user4581301
    Nov 13 '18 at 22:32












  • @user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

    – Cas_
    Nov 13 '18 at 22:36













2












2








2







There are several problems with your code.



  • using eof() in a loop incorrectly. You can't check eof() before performing a read operation first.


  • using an array without bounds checking. For that matter, you don't need an array at all.


  • skipping words, which is why you are not counting everything you are expecting. Let's take the very first line, apple. Since it is not a "tomato", you skip it and read the next word in the file, which is "apple", so you count it. But you didn't count the 1st apple at all.


You need to do something more like this instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;

int main()

int tomatoes = 0;
int apples = 0;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)

// Tomato
if (s == "tomato")
++tomatoes;

// Apple
else if (s == "apple")
++apples;


cout << "Amount of Tomatos: " << tomatoes << endl;
cout << "Amount of Apples: " << apples << endl;

return 0;



Alternatively, as @user463035818 mentioned in comments, you can use a std::map instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>
#include <map>

using namespace std;

int main()

map<string, int> foods;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)
foods[s]++;


for (map<string, int>::iterator iter = foods.begin(); iter != foods.end(); ++iter)
cout << "Amount of " << iter->first << ": " << iter->second << endl;


/* or, if you are using C++11 or later...
for (auto &item : foods)
cout << "Amount of " << item.first << ": " << item.second << endl;

*/

return 0;






share|improve this answer















There are several problems with your code.



  • using eof() in a loop incorrectly. You can't check eof() before performing a read operation first.


  • using an array without bounds checking. For that matter, you don't need an array at all.


  • skipping words, which is why you are not counting everything you are expecting. Let's take the very first line, apple. Since it is not a "tomato", you skip it and read the next word in the file, which is "apple", so you count it. But you didn't count the 1st apple at all.


You need to do something more like this instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>

using namespace std;

int main()

int tomatoes = 0;
int apples = 0;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)

// Tomato
if (s == "tomato")
++tomatoes;

// Apple
else if (s == "apple")
++apples;


cout << "Amount of Tomatos: " << tomatoes << endl;
cout << "Amount of Apples: " << apples << endl;

return 0;



Alternatively, as @user463035818 mentioned in comments, you can use a std::map instead:



#include "pch.h"
#include <fstream>
#include <string>
#include <iostream>
#include <map>

using namespace std;

int main()

map<string, int> foods;
string s;
ifstream food;

food.open("food.txt");

if (!food.is_open())

cout << "File can't open" << endl;
return 0;


cout << "File successfully opened" << endl;

while (food >> s)
foods[s]++;


for (map<string, int>::iterator iter = foods.begin(); iter != foods.end(); ++iter)
cout << "Amount of " << iter->first << ": " << iter->second << endl;


/* or, if you are using C++11 or later...
for (auto &item : foods)
cout << "Amount of " << item.first << ": " << item.second << endl;

*/

return 0;







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 13 '18 at 22:37

























answered Nov 13 '18 at 22:26









Remy LebeauRemy Lebeau

343k19268462




343k19268462







  • 1





    or use a map as OP will have many more types of food

    – user463035818
    Nov 13 '18 at 22:31











  • I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

    – Cas_
    Nov 13 '18 at 22:32











  • Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

    – user4581301
    Nov 13 '18 at 22:32












  • @user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

    – Cas_
    Nov 13 '18 at 22:36












  • 1





    or use a map as OP will have many more types of food

    – user463035818
    Nov 13 '18 at 22:31











  • I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

    – Cas_
    Nov 13 '18 at 22:32











  • Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

    – user4581301
    Nov 13 '18 at 22:32












  • @user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

    – Cas_
    Nov 13 '18 at 22:36







1




1





or use a map as OP will have many more types of food

– user463035818
Nov 13 '18 at 22:31





or use a map as OP will have many more types of food

– user463035818
Nov 13 '18 at 22:31













I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

– Cas_
Nov 13 '18 at 22:32





I really see where I over did a few things and did notice the if and else if was very important. Thanks for the help!

– Cas_
Nov 13 '18 at 22:32













Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

– user4581301
Nov 13 '18 at 22:32






Addendum: Also note how Remy used variable names that described what they counted. This is very helpful in reducing bugs, as it's easier to to see where you accidentally used apples in place of tomatoes than t and a1. In addition you spend less time looking up the meaning of t and a1 when debugging.

– user4581301
Nov 13 '18 at 22:32














@user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

– Cas_
Nov 13 '18 at 22:36





@user4581301 I suppose yes, especially since I'm still fairly new to C++. Wasn't sure if using this website would help me understand things easier, but I'm confident in that now.

– Cas_
Nov 13 '18 at 22:36



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53290364%2fcount-number-of-times-a-word-is-found-in-txt-file%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)