there has been many previous questions about redirecting stdout/stderr to a file. is there a way to redirect stdout/stderr to a string?
there has been many previous questions about redirecting stdout/stderr to a file. is there
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can redirect it to an
std::stringstream:You can use a simple guard class to make sure the buffer is always reset: