CSC/ECE 517 Fall 2009/wiki1b 5 13: Difference between revisions
No edit summary |
No edit summary |
||
Line 107: | Line 107: | ||
====Below are some of the regular expressions Characters and support in different languages==== | ====Below are some of the regular expressions Characters and support in different languages==== | ||
{| border="1" cellspacing="0" cellpadding="5" align="center" | |||
} |
Revision as of 19:45, 20 September 2009
Regular Expressions:
A pattern matching language used to match user defined patterns within text strings/files. Regular expressions gained popularity with the Unix ed and grep (grep derived from ed's search command g/re/p[1]). Since then regular expressions have been incorporated into text editors, command utilities and programming languages.
Regular Expression Engines:
There are two prominent types of regular expression engines; DFA (Deterministic Finite Automaton) and NFA (Nondeterministic Finite Automaton). NFA is found primarily in modern scripting languages, while DFA is found in older parsers.
DFA (Deterministic Finite Automaton) : State machine based algorithm that keeps track of all matches in progress. As soon as a match is made it returns "leftmost match wins"[2]; with the exception of alternation matches (<substring1>|<substring2>). If all alternation options match then the longest match will be selected - "longest leftmost match wins". Non-greedy searches are not supported since they are nondeterministic in nature. ie A.c =~ AbcvAbcAdd returns Abc DFA Languages : lex, awk, vi(m)
NFA (Nondeterministic Finite Automaton) : Greedy search routine that keeps track where the algorithm branches to determine if the most greedy match succeeds; will roll back to original position for subsequent less greedy matches. Supports non-greedy matches (ie match 0 or 1 times). ie A.c =~ AbcvAbcAdd matches both occurrences of Abc in the string. NFA Types:
- Traditional NFA : gives preference to the earliest substring in alternation matches (dog|doggy). (dog|doggy) =~ doggy returns dog. (doggy|dog) =~ doggy returns doggy.
- POSIX NFA : handles alternation matches like DFA engines. ie (dog|doggy) =~ doggy return doggy.
Traditional NFA languages : Perl, Python, Ruby, Java, PHP, JavaScript
POSIX NFA : mawk[3]
DFA vs NFA
Since the DFA engine is deterministic its performance can be bounded by its search set. NFA performance isn't as well defined since, the NFA can roll back on itself to find a less greedy match. Effectively redoing the regular expression search for the less greedy case. Those interesting in the theory and performance differences should review the following page: http://swtch.com/~rsc/regexp/regexp1.html
Regular Expression Support in Programming Languages:
All examples are the same that want to get the month, day and year from the following format (mm-dd-yyyy).
Perl
Perl has built in language support for regular expressions without requiring additional package loads or imports. Regular expression matches and returns are stored in special after match variables that are considered "reserved" variable names ($1, $2... or \1, \2....).
Example
$date = '01-02-2001' $date =~ '(\d\d)-(\d\d)-(\d\d\d\d)' $1 => '01' $2 => '02' $3 => '2001'
Python
Python has built in support via the import of the 're' package that comes standard in the Python installation libraries. Regular expression matches and returns are stored in regular expression objects that are accessed through '.' notation.
Example
import re date = '01-02-2001' date_match = re.search(r'(\d\d)-(\d\d)-(\d\d\d\)', date) month = date_match.group(1) => '01' day = date_match.group(2) => '02' year = date_match.group(3) => '2001'
Python allows for regular expressions to be "pre-compiled" at run time through the use of the re.compile() function. "Pre-compiled" regular expressions will exist while they are scoped which can result in a performance increase if the same regex is going to be used multiple times.
Ruby
Ruby has built in language support for regular expressions without addition package loads or imports. Ruby being "Perl but even better"[4] supports Perl style =~ or =! regular expression matches as well as a more OO approach via <string>.match(). Regular expression returns are stored in after match variables as well as in return regular expression objects.
Option 1, use Ruby's version of Perl syntax:
date = '01-02-2001' date =~ '(\d\d)-(\d\d)-(\d\d\d\d)' $1 => '01' $2 => '02' $3 => '2001'
Option 2, use Ruby's OO version of regular expressions by using the STRING objects match method.
date_match = date.match('(\d\d)-(\d\d)-(\d\d\d\d)') month = date_match[1] => '01' day = date_match[2] => '02' year = date_match[3] => '2001'
Option 3, use Ruby's OO version of regular expressions by using the Regexp object.
date_match = Regexp.new('(\d\d)-(\d\d)-(\d\d\d\d)') date = date_match.match(date) month = date[1] => '01' day = date[2] => '02' year = date[3] => '2001'
Like the python re.compile, the use of Regexp.new/compile also scopes the regular expression object for repeated use in code blocks.
JavaScript
JavaScript has support for pattern matching within the String objects or if more advanced features are desired the RegExp object can be utilized. RegEx matches are returned as an array or -1 (-1 indicates no match).
Example:
var date = "01-02-2001"; var regex = new RegExp("(\d\d)-(\d\d)-(\d\d\d\d)"); var match_array = RegExp.exec(date) match_array[1] => '01' match_array[2] => '02' match_array[3] => '2001'
Java
Java doesn't have built in native support for regular expressions but Sun and others have developed Regular Expression packages that can be imported to allow for regular expression functionality. Since regular expressions are an add-on and Java is strictly typed there is more syntactic overhead to produce a Java based regular expression.
Example:
PatternObj date_pat = new PatternObj("(\d\d)-(\d\d)-(\d\d\d\d)"); MatcherObj date_mat = date_pat('01-02-2001'); date_mat.Group(1) => '01' date_mat.Group(2) => '02' date_mat.Group(3) => '2001'
PHP
PHP has built in support via the preg() method routine. Regular expression matches are returned in user defined arrays.
Example:
preg_match('(\d\d)-(\d\d)-(\d\d\d\d)', '01-02-2001', $date_mat) $date_mat[1] => '01' $date_mat[2] => '02' $date_mat[3] => '2001'