So I want to throw out data from a file with certain values, but I have to use a sting to represent the data (most is numerical but not all), but when I try
1 2
if (input="1")
{returntrue;}
in a Boolean function I am told I can not equate input (my string)and "1". What am I doing wrong and how might I fix it?
Thank you, I just had a file with a header that could be identified by all of the values being either 1 or zero and that being the only place where that would be the output, so I just needed to remove them.