How can you get a single backslash in DataWeave 2.0?
%dw 2.0
output application/json
---
{
"attempt1": "\String",
"attempt2": "\\String"
}
Returns:
{
"attempt1": "\\String",
"attempt2": "\\String"
}
How can you get a single backslash in DataWeave 2.0?
%dw 2.0
output application/json
---
{
"attempt1": "\String",
"attempt2": "\\String"
}
Returns:
{
"attempt1": "\\String",
"attempt2": "\\String"
}