lower
This function is used by Ignition's Expression language.
Description​
Takes a string and returns a lower-case version of it.
Syntax​
lower(string)
Parameters
- String string - The string to make lowercase.
Results
- String - The starting string with all characters lowercase.
Examples​
Code Snippet
lower("Hello World") // returns "hello world"