%dw 2.0
import withMaxSize from dw::core::Strings
output application/json
---
{
a: "123" withMaxSize 10,
b: "123" withMaxSize 3,
c: "123" withMaxSize 2,
d: "" withMaxSize 0,
e: null withMaxSize 23,
}
withMaxSize
withMaxSize(String, Number): String
Checks that the string length isn’t greater than the specified maxLength
. If the string is longer, the function returns a substring that starts at the beginning of the string and is maxLength
characters long.
Introduced in DataWeave 2.3.0. Supported by Mule 4.3 and later.
Example
This example shows how withMaxSize
behaves with different inputs and sizes.
Note that if withMaxSize
is 0, the function returns an empty string. If
the input is null
, the output is always null
.