How can I parse XML with regular expressions

From Apertium
Revision as of 07:38, 16 May 2013 by Unhammer (talk | contribs) (→‎See also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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[edit]

  • Xml grep – what you should be using instead.