format

From Bohemia Interactive Community
Revision as of 05:46, 16 April 2006 by Hoz (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

format format

Operand types:

format: Array

Type of returned value:

String

Description:

First argument of array is the format string. Format string may contain references to following arguments in form %1, %2, etc. Each %x is replaced by corresponding argument. %x may appear in the format string in any order.

Examples:

format ["%1 - %2 - %1", 1, "text"]

Result is "1 - text - 1"

hint format ["%1", loon1 distance Tank1]

titletext [format ["Good morning, Captain %1.", name player], "plain", 1]