Documentation Index

Fetch the complete documentation index at: https://support.tulip.co/llms.txt

Use this file to discover all available pages before exploring further.

CONTAINS()

Prev Next
This content is currently unavailable in Chinese. 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