Hello,
Im new to processing but I really like it so spending a few hours everyday to improve myself.
What I am trying to achive now is, I am trying to read a txt file and count the different words inside it.
The next step will be visualising this data.
I am adding the code I am using:
This is the main sketch file.
String[] lines; // Line Array int[] wordCount = new int[100]; ArrayList wordsArray;
int wordCounter = 0; int lineIndex = 0; int charIndex = 0;