See the supported connectors for Application Integration.

TO_LOWERCASE function

TO_LOWERCASE function

Function Name Description Usage Input parameter Return value
TO_LOWERCASE Converts all the characters in a string to lowercase. TO_LOWERCASE() N/A A string with all characters in lowercase.

Supported data type

The TO_LOWERCASE function supports the following data type:

  • String

Example: Convert a string to lowercase

Sample data: $var1$ = "Integrations TEST"

Usage: $var1$.TO_LOWERCASE()

Convert var1 to lowercase.

Output: integrations test

Recommendation