reference:evaluator:format

Format(
     string:fmtstring,
     any:arg1,
     [any:arg2...]
)
string

Arguments

fmtstring

String containing insertion codes. Codes are %1 for the first argument, %2 for the second argument, and so on.

To include a literal percent character in the output string, use the special code %%.

arg1

The argument to insert for code %1.

arg2...

Optional. The argument to insert for code %2 etc...

Return value

Formatted string.

Description

Returns the formatted output string.

Example:

Output(Format("Hello %1!", "Jon"))
--> Hello Jon!

See also: As