Skip to main content
Version: 8.3 Beta 🚧

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​

TypeParameterDescription
StringstringThe string to make lowercase.

Results​

String - The starting string with all characters lowercase.

Examples​

Code Snippet
lower("Hello World") // returns "hello world"