I have a txt file with quite a few strings that are back to back. This string looks like this. It is an XML response that is copied into a text file. These responses are put together one right after the other
<?xml version="1.0" encoding="UTF-8"?>
<Response xmlns="http://xml.test.com" version="1.1">
<TransactionInfo>
<Tag></Tag>
<ServiceName>QUOTES</ServiceName>
</TransactionInfo>
<Records>
<Record instrument="A-US,USD,NORM,D"></Record>
</Records>
</Response>
I need to extract each of these into thier own separate strings.
Any help would be great!