I will not separate from the others in this great forum - I mean that I'm new to C++.
I have to define some strings that I'll use for commands in a simulation:
Like get, put, etc...
Then after typing the correct string you get some output result.
I've managed to do that.
Now my problem is that I need to put some parameters after the string and get the value of this parameter into variable.
For example
get 5,5,5 - I need to get all the values in separate variables
My question is - do I need to compare the string and after that using streamstring to get the value or it will work without comparison?