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