Skip to content

Upper case¤

Converts a string to upper case.

Parameter¤

None

Advanced Parameter¤

None

  • lowerCase — Upper case and Lower case are exact complements — one raises all characters, the other lowers them. Lower case is the choice when uniform lowercase is the target.
  • capitalize — Upper case raises every character to upper case. Capitalize raises only the first character of the string, leaving the rest in its original case.

Comments