fstring from float c++ ue4

#include <string>
#include <sstream>

std::string FStringFromFloat(float Value) {
    std::ostringstream oss;
    oss << Value;
    return oss.str();
}

// Example of usage:
float MyFloatValue = 3.14f;
std::string MyFStringValue = FStringFromFloat(MyFloatValue);