A string containing format items.
A copy of formatStr in which the items have been replaced by the string equivalent of the arguments.
Remarks: The formatStr parameter is embedded with format
items of the form:
{index[,alignment][:format-string]}
The leading and trailing braces are required. To include a
literal brace character, use two leading or trailing brace
characters.
If formatStr is "{0} bottles of beer on the wall" and the
argument is an int with the value of 99, the return value
will be:
"99 bottles of beer on the wall".
Replaces the format item in a string with the string equivalent of each argument.