vote up 4 vote down star

I was reading this article today on two different regular expression algorithms.

According to the article old Unix tools like ed, sed, grep, egrep, awk, and lex, all use what's called the Thompson NFA algorithm in their regular expresssions...

However newer tools like Java, Perl, PHP, and Python all use a different algorithm for their regular expressions that are much, much slower.

This article makes no mention at all of Javascript's regex algorthim, (and yes I know there are various JS engines out there) but I was wondering if anybody knew which of those algorithms they use, and if maybe those algorithms should be swapped out for Thompson NFA.

flag

4 Answers

vote up 7 vote down check

The Javascript ECMA language description doesn't impose a requirement for the particular implementation of regular expressions, so that part of the question isn't well-formed. You're really wondering about the particular implementation in a particular browser.

The reason Perl/Python etc use a slower algorithm, though, is that the regex language defined isn't really regular expressions. A real regular expression can be expressed as a finite state machine, but the language of regex is context free. That's why the fashion is to just call it "regex" instead of talking about regular expressions.

Update

Yes, in fact javascript regex isn't content free regular. Consider the syntax using `{n,m}', that is, matches from n to m accepted regexs. Let d the difference d=|n-m|. The syntax means there exists a string uxdw that is acceptable, but a string uxk>dw that is not. It follows via the pumping lemma for regular languages that this is not a regular language.

(augh. Thinko corrected.)

link|flag
So the regular expressions in Javascript aren't full regular expressions...yeah, I think remember something about that when I was trying to do a lookbehind in Javascript and stumbled across an article on it faking it instead: blog.stevenlevithan.com/archives/… – leeand00 Apr 7 at 21:13
Actually, they're more than full regular expressions. "{n,m}", for example, can't be represented in an FSA for arbitrary n,m. – Charlie Martin Apr 7 at 21:51
The spec DOES dictate certain capabilities, like backreferences and lookaheads, which aren't possible in a DFA's or Thompson NFA's, so it's valid to say that JavaScript regexes are Traditional NFA's. – Alan Moore Apr 7 at 22:24
@AlanM Only if a "traditional NFA" isn't actually an NFA. The proof's up there: a javascript regex defines a language that isn't regular. – Charlie Martin Apr 7 at 22:57
Of course. If regexes were limited to matching regular languages, they would be an obscure academic topic and not a feature of scores of programming languages, tools and applications. – Alan Moore Apr 7 at 23:28
show 15 more comments
vote up 7 vote down

Looking at Wikipedia I found out it's "Traditional NFA". A simple question deserves simple answer :)

link|flag
Hey that's neat. thanks! – leeand00 Apr 7 at 21:08
That doesn't make it true. I don't think the javascript language is really finite state. – Charlie Martin Apr 7 at 21:09
Digging for truth or searching for answers? What is this site all about? – MasterPeter Apr 7 at 21:11
@Charlie @MasterPeter Hmm...maybe that's why it isn't on the list of programs on Wikipedia...(and also why the list lacks browsers...) – leeand00 Apr 7 at 21:17
In the mean time, had a look at the syntax. It's definitely not finite state. – Charlie Martin Apr 7 at 21:53
show 2 more comments
vote up 3 vote down

Perl uses a memoized recursive backtracking search and, as of some improvements in 5.10, no longer blows up on perl -e '("a" x 100000) =~ /^(ab?)*$/;'. In recent tests I performed on an OS X box, Perl 5.10 outperformed awk, even in the cases where awk's algorithm was supposed to be better.

link|flag
So that article is most likely outta date then... – leeand00 Apr 7 at 21:08
vote up 0 vote down

Though the ECMA standard does not specify the algorithm an ECMAScript implementation should use, the fact that the standard mandates that ECMAScript regular expressions must support backreferences (\1, \2, etc.) rules out the DFA and "Thompson NFA" implementations.

link|flag
Backreferences rule out DFA (deterministic finite automaton), but there are other ways to solve the problem (e.g. recursive backtracking). Perl uses memoized backtracking recursion which removes a lot of the downsides to recursive backtracking (still eats a lot of memory on certain patterns though). – Chas. Owens Apr 8 at 11:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.