I have a float value that needs to be put into a std::string. How do I convert from float to string?
float val = 2.5;
std::string my_val = val; // error here
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.
Unless you’re worried about performance, use string streams:
If you’re okay with Boost, lexical_cast<> is a convenient alternative:
Efficient alternatives are e.g. FastFormat or simply the C-style functions.