I'm searching for an efficient way to get a double out of a string in c++. I now the cstring to double function, however I can not use that because this string is the following format:
DOUBLE - SPACE - REST OF STRING THAT I ALSO NEED TO SAVE.
The problem is that the double can be of different sizes, so how can I get the double efficiently and that I am still able to save the rest of the string.