Below is an example of the original CSV to XML and the result.
Original CSV to XML Examplealbum, year, US_peak_chart_post yttags, 2022, - pakainfo, 2018, - infogreeper, 20.01, 61 infinity, 2003, 6 guest-posting-sites, 2005, 3 webix-infoway, 2007, 2 healthkeet, 2010, 11 seokeet, 2011, -
And an example of how the online CSV to XML works.
CSV to XML Result<?xml version="1.0" encoding="UTF-8" ?> <root> <row> <album>yttags</album> <year>2022</year> <US_peak_chart_post>-</US_peak_chart_post> </row> <row> <album>pakainfo</album> <year>2018</year> <US_peak_chart_post>-</US_peak_chart_post> </row> <row> <album>infogreeper</album> <year>20.01</year> <US_peak_chart_post>61</US_peak_chart_post> </row> <row> <album>infinity</album> <year>2003</year> <US_peak_chart_post>6</US_peak_chart_post> </row> <row> <album>guest-posting-sites</album> <year>2005</year> <US_peak_chart_post>3</US_peak_chart_post> </row> <row> <album>webix-infoway</album> <year>2007</year> <US_peak_chart_post>2</US_peak_chart_post> </row> <row> <album>healthkeet</album> <year>2010</year> <US_peak_chart_post>11</US_peak_chart_post> </row> <row> <album>seokeet</album> <year>2011</year> <US_peak_chart_post>-</US_peak_chart_post> </row> </root>