CONTAINS()

Prev Next
This content is currently unavailable in Русский. You are viewing the default (English) version.

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