Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone please explain to me what does parse XML means? and What does XML parser do in general?

share|improve this question
2  
Parse = read and interpret.... – marc_s Feb 28 '11 at 10:27

closed as not a real question by marc_s, tenfour, ho1, Ian Ringrose, sixlettervariables Feb 28 '11 at 17:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 5 down vote accepted

It means "reading" the XML file/string and getting its content according to the structure, usually to use them in a program.

For example if you have this XML fragment:

<root>
    <node1>value1</node1>
    <node2>value2</node2>
</root>

you may want to use these values in a data structure:

ClassRoot:
    node1: string
    node2: string

so that, in the end:

Object goofy = ClassRoot.new
parse(xml, goofy)
puts(goofy)

yelds something like:

goofy[node1='value1'; node2='value2']

There are many ways of doing so, like DOM or SAX. You might want to investigate XSLT and xpath as well, according to your needs.

share|improve this answer
yelds? or yields? – Abdul Rahman Mar 14 at 13:01

Usually some information is stored in xml documents. In order to use this information in your program you have to parse it - read line by line or node by node and fetch pieces of information.

share|improve this answer

An XML parser is the piece of software that reads XML files and makes the information from those files available to applications and programming languages, usually through a known interface like the DOM

share|improve this answer

XML: Extensible Markup Language is a set of rules for encoding documents electronically. It is defined in the produced by the W3C and several other related specifications; all are fee-free open standards.

Parser: a computer program that divides code up into functional components; "compilers must parse source code in order to translate it into object code"

share|improve this answer

An XML parser converts an XML document into an XML DOM object - which can then be manipulated with a JavaScript.

http://www.w3schools.com/XML/xml_parser.asp

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.