For the string: "Number(1234)". I am looking for to extract "1234" and "Number"
I have understand that I need to know where the positions is for ex "(" and ")".
The code I have done so far look like this:
std::string Value10 = "Number(1234)";
size_t found1;
size_t found2;
found1 = Value10.find("(");
found2 = Value10.find(")");
So "(" has position 6 and ")" has postion 11. When knowing these positions. What will be the next step to do to extract "1234" ?