Assume I have this XML...
<books>
<book>
<author>
<title>
<publish_date>
<isbn_number>
<book>
</books>
...how can I write a function, or use built in functions, to return a string that is just a comma-separated concat of all child element names of book? like this...
author,title,publish_date,isbn_number
I need this to print the first line header in a csv file
