Skip to main content
Version: 7.9

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"