Hi,

I have written a method that takes data for an std::string and processes it.
I now (taking a step back) want to get this line from user. the string may have multiple line.. (meaning that i can't read only until '\n', and I have as certain const char* which is the way to stop the input.
So, what would be a way to check when to stop adding the istream to std::string?

Thanks....