I’m trying to extract variable but similar strings of text. They all start with “PARVOVIRUS” and end with “=”.
When I build this on regex101.com it works fine. I can extract it multiple times from a long list:
Expression:
(?>PARVOVIRUS).*?(?=1)
However, when I put this back into Airtable I get #ERROR!
REGEX_EXTRACT({XmlData}, ‘(?>PARVOVIRUS).*?(?=1)’)
The similar strings are:
“CANINE PARVOVIRUS IFA SEROLOGY TITRE: =1:20”
AND
“CANINE PARVOVIRUS IFA SEROLOGY TITRE: >=1:80”
I can’t work out what I am doing wrong, and why airtable rejects it.
Ultimately I am just trying to extract that 1:20 or 1:80 value but it’s variable length if “>” >= is there or not in the text.