Skip to main content
Version: 8.3 Beta 🚧

upper

This function is used by Ignition's Expression language.

Description​

Takes a string and returns an uppercase version of it.

Syntax​

upper(string)

Parameters​

TypeParameterDescription
StringstringThe string to make uppercase.

Results​

String - The starting string with all characters uppercase.

Examples​

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