Common: Add String::ToStdString()

pull/3011/head
Stenzek 2 years ago
parent 631d1e7433
commit 9855a222e0

@ -249,6 +249,10 @@ public:
{
return IsEmpty() ? std::string_view() : std::string_view(GetCharArray(), GetLength());
}
std::string ToStdString() const
{
return std::string(GetStringView());
}
// creates a new string from the specified format
static String FromFormat(const char* FormatString, ...) printflike(1, 2);

Loading…
Cancel
Save