I have a tuple with my_string = '12345', I want to turn it into this tuple: ('1','2','3','4','5').
Tried: REGEX_EXTRACT_ALL(my_string, '(.)')
and got only (1).
I have a tuple with my_string = '12345', I want to turn it into this tuple: ('1','2','3','4','5').
Tried: REGEX_EXTRACT_ALL(my_string, '(.)')
and got only (1).