%dw 2.0
import unwrap from dw::core::Strings
output application/json
---
{
"a": unwrap(null, ""),
"b": unwrap(null, '\0'),
"c": unwrap("'abc'", "'"),
"d": unwrap("AABabcBAA", 'A'),
"e": unwrap("A", '#'),
"f": unwrap("#A", '#'),
"g": unwrap("A#", '#')
}
unwrap
unwrap(text: String, wrapper: String): String
Unwraps a given text
from a wrapper
text.
Introduced in DataWeave version 2.2.0.
Example
This example shows how unwrap
behaves with different inputs and sizes.