Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Return all occurrences of strings that match a regular expression in a bag.Syntax
REGEX_FIND_ALL(string_expression, regex)Arguments
string_expression - string expression regex - string expression indicating a regular expressionExamples
REGEX_FIND_ALL('abcdefg','[a-d]') returns a bag with the following items: a,b,c,d.