Hi guys. Not the best at parsing XML data using Workflow's Read XML activity and was wondering if someone could help point me in the right direction. I have the following XML and need to be able to pick out specific rows based on the Field ID value and retrieve the Value value from that row. For the STExpectFirstName and STEExpectLastName Field ID's, the beginning of those can change, but FirstName and LastName will always be part of the Field ID. On those 2, how would I just look for those two parts of the Field ID to make the match on? Thanks in advance for your help.
<?xml version="1.0" encoding="UTF-8"?> <FormImageMeta> <FormImage> <Form FormID="StoreExpectBoard" Ver="1.2" CreateDate="08-25-2016111912" CreatedAt="59" CreatedBy="null" PageNumber="0" /> <ImageProperties Type="tif" File="StoreExpectBoard-08-25-2016111912.tif" /> </FormImage> <Reference_Data> <Field Field_ID="StoreExpectPg4StoreNumTextField" DataType="String" Value="0059" /> <Field Field_ID="StExpecSSNTxtField" DataType="String" Value="555663141" /> <Field Field_ID="StExpectFormNameTEXTFIELD" DataType="String" Value="StoreExp" /> <Field Field_ID="STExpectFirstName" DataType="String" Value="mickey" /> <Field Field_ID="STExpectLastName" DataType="String" Value="mouse jr" /> </Reference_Data> </FormImageMeta>