STARTS_WITH
Last updated
Was this helpful?
STARTS_WITH returns true if a string begins with the given prefix, and false otherwise.
STARTS_WITH(string, prefix)Returns: true or false.
p is Person
STARTS_WITH(p.phone_number, '+41')This returns true if the person's phone number starts with the Swiss country code +41.
Last updated
Was this helpful?
Was this helpful?
