I have a while(inFile >> word){
loop and a text file with 10 lines:
symbol instruction #123, $456 ;a bunch of comments
my question is, how can I ignore anything after the semicolon and skip to next line? Essentially,
if(word.find(";"))
{
//move along
}