%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#", '#')
}
DataWeave
unwrap
unwrap(text: String, wrapper: String): String
Unwraps a given text
from a wrapper
text.
Introduced in DataWeave version 2.2.0.
Parameters
Name | Description |
---|---|
|
The input string. |
|
The text used to unwrap. |
Example
This example shows how unwrap
behaves with different inputs and sizes.
Source
Output
{
"a": null,
"b": null,
"c": "abc",
"d": "ABabcBA",
"e": "A",
"f": "#A",
"g": "A#"
}
JSON
unwrap(text: Null, wrapper: String): Null
Helper function that enables unwrap
to work with a null
value.
Introduced in DataWeave version 2.2.0.