Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

omni xml , is there a simple current example for reading xml file?

Looking for readable example use of Omni Xml package.

the documentation now is 2 examples, for loading and writing, nothing about reading, nor iterating.

could you provide a simple reading Xml ,example of one repeatable property

such as

<root>
<value p1=1></value>
<value p1=2 p2='32432'/>
<value p1=3 p3='fdsf'><other></other></value>
</root>

how to iterate over all the values and get the p1 property.

like image 373
none Avatar asked Dec 02 '25 16:12

none


1 Answers

uses
  OmniXML,
  OmniXMLUtils;

var
  node : IXMLNode;
  other: IXMLNode;
  xml  : IXMLDocument;
begin
  xml := CreateXMLDoc;
  if XMLLoadFromFile(xml, 'fname.xml') then begin // 3 more notes
    for node in XMLEnumNodes(xml,'/root/value') do begin
      Writeln(GetNodeAttrStr(node, 'p1', ''), ';', GetNodeAttrStr(node, 'p2', ''), ';', 
        GetNodeAttrStr(node, 'p3', ''));
      other := SelectNode(node, 'other');
    end;
  end;
end;

Warning: Untested, written in browser.

like image 70
gabr Avatar answered Dec 05 '25 14:12

gabr



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!