window.String Class

Defined in: window.String:7
Module: Core

Methods

format

(
  • args
)
String

Defined in format:13

Returns a formatted string, similar to the printf() function in many languages. This simplified version substitutes "%s" with the arguments in order. To escape "%s", use "%%s".

Parameters:

  • args Array |

    An array or list of arguments for formatting.

Returns:

String:

The substituted string.

reverse

() String

Defined in reverse:46

Returns a reversed copy of the string.

Returns:

String:

The reversed string.