%dw 2.0
import * from dw::core::Strings
output application/json
---
{
"a" : capitalize("customer"),
"b" : capitalize("customer_first_name"),
"c" : capitalize("customer NAME"),
"d" : capitalize("customerName"),
"e" : capitalize("a*s_b’s")
}
capitalize
capitalize(text: String): String
Capitalizes the first letter of each word in a string.
The function treats every non-alphabetic character as a separator and replaces underscores with spaces. For example, capitalize("a*s_b’s")
results in "A*S B’S"
.