Difference between revisions of "How can I parse XML with regular expressions"

From Apertium
Jump to navigation Jump to search
(wops)
Line 9: Line 9:
 
* [[Xml grep]]
 
* [[Xml grep]]
   
[[Category:Technical background]]
+
[[Category:Theoretical background]]
 
[[Category:Documentation in English]]
 
[[Category:Documentation in English]]
 
[[Category:XML]]
 
[[Category:XML]]

Revision as of 09:00, 10 January 2013

You can't.

In more technical detail, all formal languages can be placed somewhere on the Chomsky hierarchy, where some languages are more expressive than others. In particular, context-free languages are more expressive than regular languages. Ignoring some technical details, this means that a regular language can never be used to completely parse non-trivial context-free languages (this can be proven by the pumping lemma). XML is a context-free language, while regular expressions are regular, so regular expressions can—provably—never fully parse XML.

That said, regexes can be useful as tools in the parsing process (e.g. to find the next occurrence of a non-quote-character).


See also