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
- 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"