When you are writing a whilestatment like this you have ',' as a delimiter.
What I wonder is if it is possible to have more than only one delimiter as I also want at the same time use " " and ")". (a blank space and a ")" )
Is this possible ?
while( getline(ReadFile, OneString, ',')
{
}
I am trying out something like this but this does not work/compile:
char limiter = ( ',' ')' );
while( getline(ReadFile, OneString, limiter)
{
}