tags:

views:

37

answers:

2

Hello Everybody,

I am working on Parsing right now, So can anybody please through some light pertaining to what XMl Parsing is basically being done and I would appreciate it greatly if somebody who knows it can give me any example for the same.

Thanks in Advance, john

A: 

XML parsing is the task of taking some text, formatted according to the rules of XML, and turning it into a data structure.

As for examples, they depend a lot on the language you are using and the libraries you choose.

In Perl, you might:

  my $doc = XML::LibXML->load_xml(location => $filename);
David Dorward
A: 

XML parsing is the operation to validate an XML document. You can do it using a softaware like EDITIX that you can download it from http://www.editix.com/download.html it's free and also you can use it to create XML documents, DTDs and XML schemas

Achraf