toLowerCase()

This function converts a given text with all its characters to lower case.


Bash
toLowerCase(text) #Output: Text


Examples

Parser expression

Description

Bash
toLowerCase("heLLo WORLD!")

This example returns:

hello world!

Bash
toLowerCase("Jira Workflow TOOLBOX!")

This example returns:

jira workflow toolbox!

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

text

text

Any given text

Output

This function returns a text


📚 Use cases and examples