Contact Us 1-800-596-4880

lower

lower(String): String

Returns the provided string in lowercase characters.

Parameters

Name Description

text

The input string.

Parameters

Name Description

text

A string.

Example

This example converts uppercase characters to lower-case.

Source

%dw 2.0
output application/json
---
{ "name" : lower("MULESOFT") }

Output

{ "name": "mulesoft" }

lower(Null): Null

Helper function that enables lower to work with a null value.