Skip to content

Lower case¤

Converts a string to lower case.

Examples¤

Notation: List of values are represented via square brackets. Example: [first, second] represents a list of two values “first” and “second”.


Transforms all values to lower case:

  • Input values:

    1. [JoHN, LeNA]
  • Returns: [john, lena]

Parameter¤

None

Advanced Parameter¤

None

  • upperCase — Lower case and Upper case apply the same exhaustive rule in opposite directions — every character is converted, none left unchanged. Upper case is the choice when the target is uniform all-caps.
  • capitalize — Lower case converts every character without exception. Capitalize is more selective: it uppercases only the first character of the string, leaving the rest unchanged.

Comments