Template Function csp::common::StringFormat

Function Documentation

template<typename ...Args>
static String csp::common::StringFormat(const String &Format, Args... args)

Builds a string with the specified format and arguments.

Based on sprintf: https://stackoverflow.com/questions/2342162/stdstring-formatting-like-sprintf

Parameters
  • FormatString : Format for string (See sprintf)

  • args – Args… : Arguments to format into the string

Returns

String : String built from arguments