I am trying to go through a .txt file with Julia, and I need to be able to look at every character as the program reads through the file. What little I have found on the Julia Docs page is how to read line by line. I know that the basic set up should be something like this
file = open("testfile.txt","r");
while !eof(file)
//look at each character and store it to a variable
Once it is stored into a variable I know how to manipulate it, but I can't figure out how to get it into the variable storage.