Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 805 Bytes

dw-strings-functions-pluralize.adoc

File metadata and controls

52 lines (34 loc) · 805 Bytes

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

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" }

pluralize(text: Null): Null

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