Hello,
I have a very simple file as show below and I need to convert it into an xml document.
the text file is
abc123 | £23,000 | Luton | Semi-detached ^
the end of file delimeter is a ^
I would like the output to be
<properties>
<property>
<property_ref>abc123e</property_ref>
<price>£23,000</price>
<location>Luton</location>
<type>Semi-detached</type>
</property>
<properties>
Could anyone help me please ???????