format('string', arg, [arg...n])
string
- is string. String with Qt QString place holders. Use %1, %2, etc for placeholders. Placeholders can be repeated.
arg [arg...n]
- any type. Any number of args.
format('This %1 a %2','is', 'test') → This is a test