Main Page
Modules
Namespaces
Classes
Creating a string(format)
With
Proud.StringT
, you can create a string in the same way of sprintf().
Proud::String
a;
a.
Format
(L
"%d %d %s"
, 1, 2, L
"hahaha"
);
// Now it becomes a = "1 2 hahaha".