I've got a huge list of addresses in a KML file and I'm really struggling on how to extract everything except for the content inside the <address></address>
tags.
Here is a sample of the XML:
<Placemark>
<styleUrl>#icon-ci-1</styleUrl>
<name>PIGGLY WIGGLY COOGLE #276 B/C </name>
<ExtendedData>
<Data name='Address'>
<value>309 E OAK ST MCRAE GA31055 </value>
</Data>
</ExtendedData>
<description><![CDATA[Address: 309 E OAK ST MCRAE GA31055 ]]></description>
<address>309 E OAK ST MCRAE GA31055 </address>
</Placemark>
<Placemark>
<styleUrl>#icon-ci-1</styleUrl>
<name>THE CORNER STORE INC </name>
<ExtendedData>
<Data name='Address'>
<value>1998 DAYTON BLVD CHATTANOOGA TN37415 </value>
</Data>
</ExtendedData>
<description><![CDATA[Address: 1998 DAYTON BLVD CHATTANOOGA TN37415 ]]></description>
<address>1998 DAYTON BLVD CHATTANOOGA TN37415 </address>
</Placemark>
<Placemark>
<styleUrl>#icon-ci-1</styleUrl>
<name>KAMBOI #2 </name>
<ExtendedData>
<Data name='Address'>
<value>4901 BONNY OAKS DR CHATTANOOGA TN37416 </value>
</Data>
</ExtendedData>
<description><![CDATA[Address: 4901 BONNY OAKS DR CHATTANOOGA TN37416 ]]></description>
<address>4901 BONNY OAKS DR CHATTANOOGA TN37416 </address>
</Placemark>
Does anyone have a clue how Regex can be used to extract this data in this manner?
309 E OAK ST MCRAE GA31055
1998 DAYTON BLVD CHATTANOOGA TN37415
4901 BONNY OAKS DR CHATTANOOGA TN37416
Thank you in advance!