I've seen a few comments here that mention that modern regular expressions go beyond what can be represented in a regular language. How is this so?
What features of modern regular expressions are not regular? Examples would be helpful.
|
I've seen a few comments here that mention that modern regular expressions go beyond what can be represented in a regular language. How is this so? What features of modern regular expressions are not regular? Examples would be helpful. |
|||||||||||||||
|
|
The first thing that comes to mind is backreferences:
(matches a group of word characters, followed by a space character and then the same group previously matched) eg: This construct is not regular (ie: can't be generated by a regular grammar). Another feature supported by Perl Compatible RegExp (PCRE) that is not regular are recursive patterns:
This can be used to match any combination of balanced parentheses and "a"s (from wikipedia) |
|||||||||||||
|
|
A couple of examples:
Probably other good examples exist :-) If you are further interessted in some of the implementation details of external stacks in combination with Regex's and balanced grouping and thus higher order automata than finite automata, I once wrote two short articles on this (http://www.codeproject.com/KB/recipes/Nested_RegEx_explained.aspx and http://www.codeproject.com/KB/recipes/RegEx_Balanced_Grouping.aspx). Anyway - finitieness or not - I blieve that the power that this extra stuff brings to the regular languages is great :-) Br. Morten |
|||||
|
|
A deterministic or nondeterministic finite automaton recognizes just the regular languages, which are described by regular expressions. The definition of a regular expression is simple. Let S be an alphabet. Then the empty set, the empty string, and every element of S are regular expressions (over S). Let u and v be regular expressions. Then the union (u | v), concatenation (uv), and closure (u*) of u and v are regular expressions over S. This definition is easily extended to the regular languages. No other expression is a regular expression. As pointed out, some back-references are an example. The Wikipedia pages on regular languages and expressions are good references. In essence, certain "regular expressions" are not regular because no automaton of a particular type can be constructed to recognize them. For example, the the language { a^ i b^ i : i <= 0 } is not regular. This is because the accepting automaton would require infinitely many states, but an automaton accepting regular languages must have a finite number of states. |
|||||||||||
|