I\'d like to format a string for Qt label, I\'m programming in C++ on Qt.
In ObjC I would write something like:
NSString *format=[NSString stringWithFor
You can use the sprintf method, however the arg method is preferred as it supports unicode.
sprintf
arg
QString str; str.sprintf("%s %d", "string", 213);