%dw 2.0
import * from dw::core::Strings
output application/json
---
{
"a": substringBefore(null, "'"),
"b": substringBefore("", "-"),
"c": substringBefore("abc", "b"),
"d": substringBefore("abc", "c"),
"e": substringBefore("abc", "d"),
"f": substringBefore("abc", "")
}
substringBefore
substringBefore(text: String, separator: String): String
Gets the substring before the first occurrence of a separator. The separator is not returned.
Introduced in DataWeave version 2.2.0.
Example
This example shows how substringBefore
behaves with different inputs and sizes.