So how could I get a specific character out of fileOutput?
The reason i need this is because i have something similar in a function in a larger program i'm creating, and when this function reads the .dat file i want it to disregard all occurrences of "\n" and "/".
I wanted to do something like:
if (fileOutput[0]!="\n" || fileOutput[0]!="/") {
//do some stuff
} else {
//do some other stuff
}