I am trying to parse an XML file created to execute an Analytic App. My XML input file is attached. I am attempting to capture the values in the XML. eg. True in Line 3, 2 in Line 5.
I have replaced the first and last lines with blanks. I attempted to create a REGEX_Replace function in my Formula tool.
REGEX_Replace([Field_1], '(<Module.*?>|<Value.*?>)?(.*)(</Module>?|</Value>?)?', '$2')
But this formula does not capture the values while leaving out the beginning and ending tags. Any suggestions to resolve this?