eo_FormatString Function

Provides .NET style string formating support.

Syntax
JavaScript
 function eo_FormatString(format, args)

Parameters

format
The format string.
args
The format arguments.
Remarks

The following JavaScript code demonstrates how to use this function:

JavaScript
eo_FormatString("'{0}' is different than '{1}'", ["abc", "def"]);
The above code returns: 'abc' is different than 'def'.

See Also