I am scraping some webpage for some specific portions of the web page. I am using php, curl and xpath for getting the section of the page. but people suggest that i should be using namespaces of the XHTML document for the XPATHs to work. As far as i know namespaces are used to avoid collisions between names of various elements so why do i need namespaces in this case? I am actually converting the web page using Tidy to XHTML. Do I really need the namespaces and if yes in which cases because the same code without namespaces works well for scraping content from wikipedia. Also even after modifying my php code to include namespaces the code doesnt work for some urls. you can have a look at this post.
|
|
||||
|
First of all: namespaces are a fundamental concept in XML. If you are not familiar with namespaces, please take time to learn and understand them. You need to use namespace prefixes in your XPath expressions if and only if the XML document you are processing uses namespaces. All XPath (1.0) name tests use qualified names, that is expressions without a namespace prefix always match only to targets in no-namespace. This means that an expression
...but it doesn't work on this document...
...because in this case both the
...is identical to the second document example and using XPath on it also requires the usage of namespace prefixes. Searching data from this document would require registering the namespace URI with some prefix and then using that prefix in your XPath expressions. Something like So the need for a namespace prefix in XPath queries depends on the document. Some web sites serve their pages as valid XHTML documents and thus all the elements belong in the XHTML namespace. Some other sites serve HTML or XHTML without a namespace, which is technically invalid XHTML. The way how the namespace prefixes are registered depends on the XML framework or library that you use. In php and SimpleXML this is done roughly this way
|
|||
|
It is possible to use XPath expressions that do not use namespaces. If you are scraping web content and aren't sure whether it will be XHTML or well-formed HTML that is not bound to a namespace, then you may find it more convenient to use a more generic match criteria for your XPath that ignores the namespace of the elements. You can do this by a generic match for any element (e.g. Doing so will match on any element with that name, whether it is bound to a particular namespace or not. For example:
|
|||
|
|
xpathsto work correctly. have alook at this post – lovesh May 30 '11 at 17:36tidy– lovesh May 30 '11 at 17:50