Regular expression
From open-encyclopedia.com - the free encyclopedia.
A regular expression (abbreviated as regexp, regex or by some regxp) is a string that describes a whole set of strings, according to certain syntax rules. These expressions are used by many text editors and utilities (especially in the Unix operating system) to search bodies of text for certain patterns and, for example, replace the found strings with a certain other string. Or in other words, a regular expression is for words what mathematics is for numbers .
| Contents |
Brief history
The origin of regular expressions lies in automata theory and formal language theory (both part of theoretical computer science). These fields study models of computation (automata) and ways to describe and classify formal languages. In the 1940s, Warren McCulloch and Walter Pitts described the nervous system by modelling neurons as small simple automata. The mathematician Stephen Kleene later described these models using his mathematical notation called regular sets. Ken Thompson built this notation into the editor qed, then into the Unix editor ed and eventually into grep. Ever since that time, regular expressions have been widely used in Unix and Unix-like utilities such as: expr, awk, Emacs, vi, lex, and Perl. Perl regular expressions were derived from regex written by Henry Spencer. This in turn evolved into pcre (Perl Compatible Regular Expressions), a library built by Philip Hazel used by many modern tools. The integration of regular expressions in computer languages is still very poor and part of the effort in the design of the future Perl6 is this very integration. This is the subject of Apocalypse 5.
Regular expressions in formal language theory
Regular expressions consist of constants and operators that denote sets of strings and operations over these sets, respectively. Given a finite alphabet Σ the following constants are defined:
- (empty set) ∅ denoting the set ∅
- (empty string) ε denoting the set {ε}
- (literal character) a in Σ denoting the set {"a"}
and the following operations:
- (concatenation) RS denoting the set { αβ | α in R and β in S }. For example {"ab", "c"}{"d", "ef"} = {"abd", "abef", "cd", "cef"}.
- (set union) R U S denoting the set union of R and S.
- (Kleene star) R* denoting the smallest superset of R that contains ε and is closed under string concatenation. This is the set of all strings that can be made by concatenating zero or more strings in R. For example, {"ab", "c"}* = {ε, "ab", "c", "abab", "abc", "cab", "cc", "ababab", ... }.
To avoid brackets it is assumed that the Kleene star has the highest priority, then concatenation and then set union. If there is no ambiguity then brackets may be omitted. For example, (ab)c is written as abc and a U (b(c*)) can be written as a U bc*.
Sometimes the complement operator ~ is added; ~R denotes the set of all strings over Σ that are not in R. In that case the resulting operators form a Kleene algebra. The complement operator is redundant: it can always be expressed by only using the other operators.
Examples:
- a U b* denotes {"a", ε, "b", "bb", "bbb", ...}
- (a U b)* denotes the set of all strings consisting of 'a's and 'b's, including the empty string
- b*(ab*)* the same
- ab*(c U ε) denotes the set of strings starting with 'a', then zero or more 'b's and finally optionally a 'c'.
- ((a U ba(aa)*b)(b(aa)*b)*(a U ba(aa)*b) U b(aa)*b)*(a U ba(aa)*b)(b(aa)*b)* denotes the set of all strings which contain an even number of 'b's and an odd number of 'a's. Note that this regular expression is of the form (X Y*X U Y)*X Y* with X = a U ba(aa)*b and Y = b(aa)*b.
Regular expressions in this sense can express exactly the class of languages accepted by finite state automata: the regular languages. There is, however, a significant difference in compactness: some classes of regular languages can only be described by automata that grow exponentially in size, while the required regular expressions only grow linearly. Regular expressions correspond to the type 3 grammars of the Chomsky hierarchy and may be used to describe a regular language.
We can also study expressive power within the formalism. As the example shows, different regular expressions can express the same language: the formalism is redundant.
It is possible to write an algorithm which for two given regular expressions decides whether the described languages are equal - essentially, it reduces each expression to a minimal deterministic finite state automaton and determines whether they are isomorphic (equivalent).
To what extent can this redundancy be eliminated? Can we find an interesting subset of regular expressions that is still fully expressive? Kleene star and set union are obviously required, but perhaps we can restrict their use. This turns out to be a surprisingly difficult problem. As simple as the regular expressions are, it turns out there is no method to systematically rewrite them to some normal form. They are not finitely axiomatizable. So we have to resort to other methods. This leads to the star height problem.
Regular expression syntaxes
Traditional Unix regexps
The "basic" Unix regexp syntax is now defined as obsolete by POSIX, but is still widely used for the purposes of backwards compatibility. Most Unix utilities (grep, sed...) use it by default.
In this syntax, most characters are treated as literals---they match only themselves ("a" matches "a", "(bc" matches "(bc", etc). The exceptions are called metacharacters:
| . | Matches any single character |
| [ ] | Matches a single character that is contained within the brackets. For example, [abc] matches "a", "b", or "c". [a-z] matches any lowercase letter. These can be mixed: [abcq-z] matches a, b, c, q, r, s, t, u, v, w, x, y, z, and so does [a-cq-z]. |
| [^ ] | Matches a single character that is not contained within the brackets. For example, [^abc] matches any character other than "a", "b", or "c". [^a-z] matches any single character that isn't a lowercase letter. As above, these can be mixed. |
| ^ | Matches the start of the line (or any line, when applied in multiline mode) |
| $ | Matches the end of the line (or any line, when applied in multiline mode) |
| \( \) | Define a "marked subexpression". What the enclosed expression matched can be recalled later. See the next entry, \n. Note that a "marked subexpression" is also a "block" |
| \n | Where n is a digit from 1 to 9; matches what the nth marked subexpression matched. This construct is theoretically irregular and has not been adopted in the extended regular expression syntax. |
| * |
|
| \{x,y\} | Match the last "block" at least x and not more than y times. For example, "a\{3,5\}" matches "aaa", "aaaa" or "aaaaa". Note that this is not found in some instances of regex. |
There is no representation of the set union operator in this syntax.
Examples:
- ".at" matches any three-character string ending with "at"
- "[hc]at" matches "hat" and "cat"
- "[^b]at" matches any three-character string ending with "at" and not beginning with 'b'.
- "^[hc]at" matches "hat" and "cat" but only at the beginning of a line
- "[hc]at$" matches "hat" and "cat" but only at the end of a line
POSIX modern (extended) regexps
The more modern "extended" regexp can often be used with modern Unix utilities by including the command line flag "-E".
POSIX extended regexps are similar in syntax to the traditional Unix regexp, with some exceptions. The following metacharacters are added:
| + | Match the last "block" one or more times - "ba+" matches "ba", "baa", "baaa" and so on |
| ? | Match the last "block" zero or one times - "ba?" matches "b" or "ba" |
| | | The choice (or set union) operator: match either the expression before or the expression after the operator - "abc|def" matches "abc" or "def". |
Also, backslashes are removed: \{...\} becomes {...} and \(...\) becomes (...)
Examples:
- "[hc]+at" matches with "hat", "cat", "hhat", "chat", "hcat", "ccat" et cetera
- "[hc]?at" matches "hat", "cat" and "at"
- "([cC]at | [dD]og)" matches "cat", "Cat", "dog" and "Dog"
Since the characters '(', ')', '[', ']', '.', '*', '?', '+', '^' and '$' are used as special symbols they have to be "escaped" somehow if they are meant literally. This is done by preceding them with '\' which therefore also has to be "escaped" this way if meant literally.
Examples:
- ".\.(\(|\))" matches with the string "a.)"
Perl-compatible regular expressions (PCRE)
Perl has a much richer syntax than even the extended POSIX regexp. In addition, its syntax is somewhat more predictable (for example, a backstroke always quotes a non-alphanumeric character). For these reasons, the Perl syntax has been adopted in other utilities and applications -- Tcl and exim, for example.
Regexes for Nonregular Languages
Although still named "regular expressions", modern regexes give an expressive power that far exceeds the regular languages.
For example, the ability to group supexpressions with brackets and recall them in the same expression makes it easy to recognise strings of repeated words like "papa" or "WikiWiki". The regex for these strings is just "^(.*)\1$". However, the set of these strings as a formal language is not regular.
Implementations and running times
There are at least two different algorithms that decide if (and how) a given string matches a regular expression.
The oldest and fastest relies on a result in formal language theory that allows every Nondeterministic Finite State Machine (NFA) to be transformed into a deterministic finite state machine (DFA). The algorithm performs or simulates this transformation and then runs the resulting DFA on the input string, one symbol at a time. The latter process takes time linear in the length of the input string. This algorithm is often referred to as DFA. It is fast, but can be used only for matching and not for recalling grouped subexpressions.
The other algorithm is often called NFA and uses backtracking on the input string. (The NFA terminology is highly confusing.) Like all backtracking algorithms, its running time can deteriorate. Even though backtracking implementations give no running time guarantee in the worst case, they are allow for much greater flexibility and provide more expressive power.
Some implementations try to provide the best of both algorithms by first running a fast DFA match to see if the string matches the regular expression at all, and only in that case perform a potentially slower backtracking match.
See also
Regular expressions with Perl examples
References
- Jeffrey Friedl: Mastering Regular Expressions, O'Reilly, ISBN 0-596-00289-0
- Tony Stubblebine: Regular Expression, Pocket Reference, O'Reilly, ISBN 0-596-00415-X
- Ben Forta: Sams Teach Yourself Regular Expressions in 10 Minutes, Sams, ISBN 0-672-32566-7
- Mehran Habibi: Real World Regular Expressions with Java 1.4, Springer, ISBN 1-59059-107-0
- Francois Liger, Craig McQueen, Paul Wilton: Visual Basic .NET Text Manipulation Handbook, Wrox Press, ISBN 1-86100-730-2
- Michael Sipser: Introduction to the Theory of Computation, PWS Publishing Company, ISBN 0-534-94728-X
External links
- DMOZ listing
- Articles/Archives:
- Regexp Syntax Summary, reference table for different styles of regular expressions
- online regular expression archive
- Regular expression information
- Syntax and Semantics of Regular Expressions by Xerox Research Centre Europe
- Learning to Use Regular Expressions by David Mertz
- Mastering Regular Expressions book website
- Regenechsen Beginners tutorial for using Regular Expressions
- An incomplete history of the QED text editor
- xpressive
- The GRETA Regular Expression Template Archive
- Tools:
- Regular expression .NET online tester
- The Regex Coach, a very powerful interactive learning system to hone your regexp skills
- The Regulator: Advanced and free Regex testing tool
- RegexBuilder Simple .NET tool to test regular expressions
- Tcl Regular Expression Visualiser
- JRegexpTester, free java regexp testing tool.
cs:Regulární jazyk da:Regulære udtryk de:Regulärer Ausdruck es:Expresión regular fr:Expression régulière ja:正規表現 pl:Wyrażenia regularne pt:Expressão regular fi:Säännöllinen_lauseke