Skip to main content
Version: 7.9

upper

This function is used by Ignition's Expression language.

Description​

Takes a string and returns an upper-case version of it.

Syntax​

upper(string)

  • Parameters

    • string string - The string to make uppercase.
  • Results

    • string - The starting string with all characters uppercase.

Examples​

Code Snippet
upper("Hello World") //returns "HELLO WORLD"