startsWith
Syntax
startsWith(input, prefix)<string>.startsWith(prefix)Arguments
Examples
startsWith("hello world", "hello")
// true"foobar".startsWith("bar")
// false$ echo '{"url": "https://example.com"}' | dasel -i json 'url.startsWith("https")'
trueLast updated