%dw 2.0
import * from dw::core::Strings
output application/json
---
{ "pluralize" : pluralize("box") }
DataWeave
pluralize
pluralize(text: String): String
Pluralizes a singular string.
If the input is already plural (for example, "boxes"), the output will match the input.
Parameters
Name | Description |
---|---|
|
The string to pluralize. |
Example
This example pluralizes the input string "box" to return "boxes".
Source
Output
{ "pluralize" : "boxes" }
JSON
pluralize(text: Null): Null
Helper function that enables pluralize
to work with a null
value.