Contact Us 1-800-664-9073

On Saturday April 1, 2023, from 9 AM to 2 PM (PDT), docs.mulesoft.com content will be unavailable due to scheduled maintenance.

upper

upper(text: String): String

Returns the provided string in uppercase characters.

Parameters

Name Description

text

The string to convert to uppercase.

Example

This example converts lowercase characters to uppercase.

Source

%dw 2.0
output application/json
---
{ "name" : upper("mulesoft") }

Output

{ "name": "MULESOFT" }

upper(value: Null): Null

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

View on GitHub