String.format()

Signature

String format(String message, Object... arguments)

Domain

ACTION, CONDITION, QUERY, BUI

Description

Returns the message string formatted with arguments. Arguments are substituted in the order the patterns are found.

Parameters

NameTypeDescription
messageStringThe String that contains the pattern(s) specified by %s.
argumentsObject[]The argument values to substitute..

Returns

TypeDescription
Stringwith parameters substituted.

Cautions

none