I'm using this tool to make a CSV from an ebay XML file.
I've removed all of the shipping destinations using regex in notepad++ since they were unneccessary. Then I removed (<sellingStatus>|</sellingStatus>)
becasue I thought maybe the tree was too deep (I'm an XML noob). Still, the price doesn't appear on the CSV when it's done converting.
Sample of the XML below. Could someone explain why the price isn't getting picked up by the converter, and ideally suggest a regex operation to fix it please?
<?xml version='1.0' encoding='UTF-8'?>
<findItemsIneBayStoresResponse xmlns="http://www.ebay.com/marketplace/search/v1/services">
<ack>Success</ack>
<version>1.13.0</version>
<timestamp>2016-08-03T06:19:01.316Z</timestamp>
<searchResult count="97">
<item>
<itemId>152174882749</itemId>
<title>Yolande' Butterfly Blue #' print of original Watercolour , A4 size.</title>
<globalId>EBAY-GB</globalId>
<primaryCategory>
<categoryId>60437</categoryId>
<categoryName>Paintings</categoryName>
</primaryCategory>
<galleryURL>http://thumbs2.ebaystatic.com/m/m_VMlLhEdNRYkHi-6hUvbLg/140.jpg</galleryURL>
<viewItemURL>http://www.ebay.co.uk/itm/Yolande-Butterfly-Blue-print-original-Watercolour-A4-size-/152174882749</viewItemURL>
<paymentMethod>PayPal</paymentMethod>
<autoPay>false</autoPay>
<postalCode>TQ110DD</postalCode>
<location>Buckfastleigh,United Kingdom</location>
<country>GB</country>
<currentPrice currencyId="GBP">12.5</currentPrice>
<convertedCurrentPrice currencyId="GBP">12.5</convertedCurrentPrice>
<sellingState>Active</sellingState>
<timeLeft>P16DT11H53M5S</timeLeft>
<listingInfo>
<bestOfferEnabled>true</bestOfferEnabled>
<buyItNowAvailable>false</buyItNowAvailable>
<startTime>2016-07-20T18:12:06.000Z</startTime>
<endTime>2016-08-19T18:12:06.000Z</endTime>
<listingType>StoreInventory</listingType>
<gift>false</gift>
</listingInfo>
<isMultiVariationListing>false</isMultiVariationListing>
<topRatedListing>false</topRatedListing>
</item>
<item>
<itemId>152181312690</itemId>
<title>'Peacock' print of original Watercolour by Yolande, A4 size.</title>
<globalId>EBAY-GB</globalId>
<primaryCategory>
<categoryId>60437</categoryId>
<categoryName>Paintings</categoryName>
</primaryCategory>
<galleryURL>http://thumbs3.ebaystatic.com/m/m42A7QDsUeNNpkQylOnmMmg/140.jpg</galleryURL>
<viewItemURL>http://www.ebay.co.uk/itm/Peacock-print-original-Watercolour-Yolande-A4-size-/152181312690</viewItemURL>
<paymentMethod>PayPal</paymentMethod>
<autoPay>false</autoPay>
<postalCode>TQ110DD</postalCode>
<location>Buckfastleigh,United Kingdom</location>
<country>GB</country>
<currentPrice currencyId="GBP">12.5</currentPrice>
<convertedCurrentPrice currencyId="GBP">12.5</convertedCurrentPrice>
<sellingState>Active</sellingState>
<timeLeft>P21DT16H47M12S</timeLeft>
<listingInfo>
<bestOfferEnabled>true</bestOfferEnabled>
<buyItNowAvailable>false</buyItNowAvailable>
<startTime>2016-07-25T23:06:13.000Z</startTime>
<endTime>2016-08-24T23:06:13.000Z</endTime>
<listingType>StoreInventory</listingType>
<gift>false</gift>
</listingInfo>
<isMultiVariationListing>false</isMultiVariationListing>
<topRatedListing>false</topRatedListing>
</item>