REGEXP_EXTRACT_ALL
Last updated
Last updated
first | second | Output |
---|---|---|
first
string
second
string
'abcdefabc'
'abc'
[abc
, abc
]
'1a2b3'
'\d+'
[1
, 2
, 3
]
'Word'
'^((((((((((..)?.)?.)?.)?.)?.)?.)?.)?.)?.)?'
[Word
, Wor
, Wo
, W
]
'abab'
'abc'
null
null::string
'abc'
null
'abc'
''
[,
, ,
]
array['ab1', 'a2a', '345']
'\d'
[1
, 2
, 3
, 4
, 5
]
array['ab1', 'a2a', '345']
array['\d', 'a']
[1
, a
, 2
, a
, a
, 3
, 4
, 5
]
'abc'
null::string
null
'abcdefabc'
'abc'
[abc
, abc
]