Are parameters in exact same order and there is no spaces between name and actual value? If so, you can just use string search methods. Otherwise you would better apply regex to it.
You have the line in a std::string.
You can find() the position of name=" .
You can find() the position of next '"'.
Between there is the substr() that you want.