Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 660 Bytes

dw-core-functions-lower.adoc

File metadata and controls

47 lines (31 loc) · 660 Bytes

lower

lower(text: String): String

Returns the provided string in lowercase characters.

Parameters

Name Description

text

The input string.

Example

This example converts uppercase characters to lower-case.

Source

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

Output

{ "name": "mulesoft" }

lower(value: Null): Null

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