%dw 2.0
output application/json
---
{ "name" : lower("MULESOFT") }
DataWeave
lower
lower(text: String): String
Returns the provided string in lowercase characters.
Parameters
Name | Description |
---|---|
|
The input string. |
Example
This example converts uppercase characters to lower-case.
Source
Output
{ "name": "mulesoft" }
JSON
lower(value: Null): Null
Helper function that enables lower
to work with a null
value.