Last updated
Last updated
formatString
string
The format string where {n} prints the n'th input. For example, the pattern '{0}.{0}.{1}' on the inputs 'a' and 'b' will result in the string 'a.a.b'
null
inputs#
any
'{0} {1} is {2} years old'
array['John', 'Jane']
array['Smith', 'Johnson']
array[35, 32]
[John Smith is 35 years old
, Jane Johnson is 32 years old
]
'{0}:{1}'
array['red', 'green', 'blue', 'luminosity']
array[255, 255, 0]
[red:255
, green:255
, blue:0
, luminosity:
]
'{0} {1} is {2} years old'
array['John', 'Jane']
array['Smith', 'Johnson']
array[35, 32]
[John Smith is 35 years old
, Jane Johnson is 32 years old
]