Module yz_xml_extractor

An extractor for XML.

Description

An extractor for XML. Convert the hierarchy to a set of fields where the field name is the element stack separated by the field_separator and the field value is the value of the innermost element.

Example:
    <person>
      <name>Ryan</name>
      <age>29</age>
    </person>
 
    [{<<"person_name">>, <<"Ryan">>},
     {<<"person_age">>, <<"29">>}]

Options:

field_separator - Use a different field separator than the default of ..

Generated by EDoc