XML to Fields

This utility extracts only the name of all fields from a XML. Tags that are parent only are processed as prefix, and tags with value are processed as a field itself.

Example of XML:
<parent>
   <child1>value</child1>
   <child2>value</child2>
</parent>

Example of output:
parent.child1
parent.child2

XML

Output