stringFormat

Description

Returns a formatted string using the specified format string and arguments.

Syntax

stringFormat( format, args... )

Examples
 stringFormat("Hello %s", "world") //returns "Hello world"
 stringFormat("%s, %s, %s", 1, 2, 3) //returns "1, 2, 3"
 stringFormat("%d, %d, %d", 4, 5, 6) //returns "4, 5, 6"