--- title: "REGEX_MATCH()" slug: "regex-match" updated: 2025-10-14T16:28:31Z published: 2025-11-19T15:54:21Z canonical: "support.tulip.co/regex-match" --- > ## 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. # REGEX_MATCH() ## Description Returns a list of matches to the regular expression ## Available In - **Apps** - **Automations** - **Analysis** ## Syntax REGEX_MATCH(text, regex, modifiers?): List ## Example REGEX_MATCH("BaNaaNA", "ana", "gi") = ["aNa","aNA"] regex_match("aa^bb", "\\^bb") = ["^bb"]