Search a string against multiple needles and return true
if all are found, otherwise false
. Case-insensitive.
summary: "It was the best of times, it was the worst of times."
{{ if summary | contains_all('best', 'worst') }}
{{ if summary | contains_all('best', 'better') }}
true
false