Description
Returns whether or not a string contains a given substring
Available In
- Apps
- Automations
Syntax
CONTAINS(string: Text, substring: Text) => Boolean
Example
CONTAINS("hello", "llo") = true
contains("hello", "oll") = false
contains("hello", "") = true
contains("", "") = true
