Format
Format(string, replace0[,replace1...])
Description
Replaces {n} placeholders with arguments. One or more arguments can be passed, in addition to the string template itself, to insert into the string.
Example (Basic)
Print Format("1{0}2","a") Print Format("My name is {0} and I live in {1}.", "Kartman", "South Park")
Example (JavaScript)
NSB.Print(FormatCurrency(-3.5, 2, 0, true)); NSB.Print(FormatCurrency(123456, 2, true, false, true));
Output
1a2 My name is Kartman and I live in South Park.