Takes a string and replaces instances of markers with values in the given array. The markers take the form of %1, %2, etc. I.e.:
%1
%2
Format("The %1 is worth %2 gold", [ 'Sword', 500 ])
The string containing the replacement markers.
An array containing values that will replace the markers. If no value exists an empty string is inserted instead.
Takes a string and replaces instances of markers with values in the given array. The markers take the form of
%1,%2, etc. I.e.:Format("The %1 is worth %2 gold", [ 'Sword', 500 ])