Reputation: 403
I'm working on a project using .net, C++, that needs regular expression, I don't want to write a Regular Expression Engine myself, besides the performance is so important for me, I found that Google's RE2 is almost the fastest, but I can't open "code.google.com/p/re2/" :( Would you tell me where can I download it? I'm searching, but all the refrences send me back to "code.google.com/p/re2/". TNX
Upvotes: 2
Views: 735
Reputation: 263047
You can download the source code using Mercurial and compile it yourself, as explained here:
$ hg clone https://re2.googlecode.com/hg re2
$ cd re2
$ make
Be warned, though, that no effort has been made to ensure it will compile on Windows. You might have to tweak things a little to achieve that.
Upvotes: 2