Introduction

Regular expressions (regex) is often the most convinient approach for parsing text files. The performance of regex matching may be critical when the input files are huge, which is quite common in analyzing biological data. Most scripting languages support regex and there are various C/C++ libraries, too, but surprisingly few have evaluated their performance. This page aims to provide a preliminary benchmark on the performance of several regex libraries as well as scripting languages.

Design

Input text

The text file for this benchmark is a version of concatenated Linux howto document. This file has 39,422,105 bytes, 5,330,321 words and 1,086,077 lines (according to wc). The maximum line length is 533 and the median is 33.

Patterns

  1. URI (protocol://server/path): ([a-zA-Z][a-zA-Z0-9]*)://([^ /]+)(/[^ ]*)?
  2. Email (name@server): ([^ @]+)@([^ @]+)
  3. Date (month/day/year): ([0-9][0-9]?)/([0-9][0-9]?)/([0-9][0-9]([0-9][0-9])?)
  4. URI|Email: ([a-zA-Z][a-zA-Z0-9]*)://([^ /]+)(/[^ ]*)?|([^ @]+)@([^ @]+)

It should be note that the above regular expressions may not be strictly correct or the optimal. We just need something to test the performance.

It is also worth noting that matching word boundaries is not required by POSIX regex. For the patterns above, we may simply check the character before and after the matching region to test if the entire match is a word.

Matching

The benchmarking program reads the file and tests matching line by line. The tailing new line character is trimmed as different libraries may treat it differently.


Results

All the benchmark programs or scripts are available at this page. The following table shows the performance on a 64-bit Macbook Pro clocked at 2.53GHz with Mac OS X 10.6.4 and gcc-4.2.1 installed.

Library/programAlgoUTF-8PerlLightPOSIXURIEmailDateSum3URI|Email
boost::regex (1.42)BT?YesNoNo5.441.821.158.419.84
boost::xpressive (1.42)??YesNoNo3.721.511.226.457.80
Glib (2.24.1)??YesNoNo1.080.840.792.3518.02
onig-posix (5.9.2)BTYesYesNoYes0.340.440.411.1910.89
PCRE-posix (8.10)BTYesYesNoYes0.670.390.541.6013.48
RE2 (2010-07-19)FSAYesYesNoNo0.570.560.551.680.58
Regex (Mac, 10.6.4)??NoNoYes1.180.541.283.0019.66
Regex (NCBI, ?)BTNoNoYesYes7.219.833.4520.4922.35
regexp9 (20100715)FSAYesNoYesSimilar1.902.120.954.974.55
Tcl (8.5)?YesNoNoSimilar2.171.731.525.423.66
TRE (0.8.0)FSA?NoNoSimilar4.342.421.738.498.57
T-Rex (1.0)?NoNoYesNo4.396.452.4513.299.35
egrep (GNU, 2.5.1)?YesNoNANA0.070.080.100.250.16
gawk (3.1.8)?YesNoNANA1.431.401.384.211.43
Javascript V8 (2.3.1)???NANA2.302.571.176.043.70
nawk (20070501)FSANoNoNANA1.401.401.404.201.40
Perl (5.8.9)BTYesYesNANA0.630.590.521.7410.61
Python (2.6.1)?YesNoNANA6.3710.192.1818.7416.03

Discussions

Note: boost::xpressive, Glib, Tcl and V8 were added later. The discussions below did not consider these implementations.

Backtracking vs. state machines

Regex libraries are typically implemented with backtracking (BT) or finite state machine (FSA). The former approach is more flexible but can be exponential in time given some regex. The latter guarantees polynomial time in searching, but usually less flexible. RE2 is believed to be the only library that uses FSA and supports Perl-like syntax at the same time.

In practice, implementations based on BT and FSA seem to have similar performance on short regex. However, FSA may greatly outperform BT given the `|' operator in regex. This means for BT-based implementations, matching with multiple regex is preferred.

Speed of C/C++ regex libraries

For `|'-free regex, onig is the winner. PCRE and RE2 are similar in performance. The regex library from Mac OS X is comes in the next place. Of the three light-weight library, only regexp9 is close to the performance of matured libraries. TRE and boost::regex are nearly 8X slower than onig on `|'-free regex.. The T-Rex and NCBI port of regex are the slowest implementations.

For `|'-contained regex, the results are changed a lot. RE2 clearly beats all the rest. Regexp9 and TRE, the other two FSA based libraries come in the second and the third places, respectively. Several BT-based algorithms such as onig and PCRE are 10X slower than using two regex separately, although this is not true for all BT-based algorithms.

Speed of standalone programs and scripting languages

GNU's egrep is fast mainly because it hybridizes regex matching with Boyer-Moore search. I do not know how exactly this is done, but I do hope other regex may adopt this heuristics. On all the regex I have tried, egrep is the fastest. Another possible reason that egrep is fast may be because it does not keep track of grouping.

Perl is surprisingly fast as a scripting language. Python, on the contrary, is surprisingly slow. I heavily rely on regex for parsing huge text files. This benchmark tells me that python, although faster than perl in other applications, is not the right language for me.

C vs. C++

I used PCRE's POSIX APIs in the table above. If I use its C++ APIs, PCRE becomes 10% slower. C++ interfaces incur minor overheads.

For boost::regex, I implemented two versions: one uses the fgets() libc API and the other uses std::getline() to read into a C++ string. The already-slow boost::regex becomes 50% slower, which means 50% CPU time goes to a function as simple as getline()! Why not implement getline() by calling fgets()?

Alternative benchmarks

Russ Cox, the developer of the RE2 library, evaluated the performance of RE2 and PCRE. He seems to be using long texts, while my programs match line by line. The results may not be comparable.

Google search will bring us to this page. The conclusion broadly agrees with mine: PCRE is significantly faster than boost::regex. Nonetheless, that benchmark is not performed in a realistic context.

This page evaluates the performance of regex matching of several scripting languages. It also points out that python is slower in regex matching. Another interesting conclusion from that page is perl is efficient given `/FOO/ || /BAR/' but very inefficient given `/FOO|BAR/'. So I also added this type of regex to my benchmark.

The regex-dna benchmark from The Computer Language Benchmarks Game shows that Python is faster than Perl. This may be related to Perl's inefficiency given `/FOO|BAR/'. I have not tested this, though.


Conclusions

Before I did this benchmark, I thought all regex implementations are similar in performance, like what happens to the hash table libraries. To my big surprise, the fact is the contrary. The performance varies a lot between implementations and between regex. Most widely used implementations such as boost::regex, Python, Perl and gawk all have striking weakness.

In this benchmark, RE2 seems to be the overall winner. It is feature-rich and among the fastest for all 4 regex. More importantly, it does not suffer from the worst-case problem. RE2 is implemented in C++. For C programmers, onig or PCRE is a good choice. However, to use these two libraries, we should be aware that regex containing the `|' operator may greatly degrade the performance. If this is a concern, one may consider regexp9. Regexp9 is featured as its small code size (<1300 lines of code) which makes it the ideal library when we want to include the source code in a project to avoid an extra library dependency.


Appendix: Performance on x64-linux

Compiled on Debian etch with gcc-4.1.2 (CPU: Xeon E5450 @3GHz). This is a server. Timing may have large variance due to other active processes running on the same machine.

Library/ProgramURIEmailDateURI|Email
re2 (20100719)0.540.560.500.64
regex (glibc 2.3.6)3.123.960.393.91
regexp9 (20100715)1.742.090.974.25
tcl (8.4)1.561.261.092.72
gawk (3.1.5)0.470.430.300.36
egrep (GNU 2.5.1)0.090.050.100.16
nawk (20070501)0.940.920.920.92
perl (5.8.8)0.620.560.629.93
python (2.5)4.267.001.5810.66