Hi,
I am attempting to use Code by Zapier, Python, to extract a specific set of numbers in sequence from a random string of text. The set of numbers will start with four leading zeros. The Python code I am using is adapted from the following which I created in a Python compiler;
str = "body of SMS 5PM 9PM 2AM 4 8 2 00001124"
#search using regex
x = re.findall('0000+00-9]+00-9]',str)
print('%.8s' %xs0])
The output from the above is 00001124, which is perfect.
In Code by Zapier Set up Action, I have the following:
The error I am receiving is this:
The objective is to search the entire string and only output the eight digits with four leading zeros. Thanks in advance.