regex-benchmark
regex-benchmark copied to clipboard
It's just a simple regex benchmark of different programming languages.
.NET 5 went out of support two days ago. This PR updates the C# benchmarks to run on .NET 6. The benchmarks need to run again. I also made mentions...
PR title is explicit The implementation only count matches, doesn't store them; don't know what it's supposed to do exactly. Redid PR without CL included, a bit new to the...
Extremely slow, even with maximum optimization. As I'm a bit novice to CL, this may be my fault, but I doubt it, and SBCL storing Unicode text as array of...
https://dart.dev/tools/dart-compile Instead of dart2native the following command should be used: ```shell mkdir -p dart/bin && dart compile exe dart/benchmark.dart -o dart/bin/benchmark ```
I've just tried [CTRE](https://github.com/hanickadot/compile-time-regular-expressions) on these benchmarks. On my machine, it beats rust. Here's the code: ```c++ #include "ctre.hpp" #include #include #include #include #include template void measure(const std::string& data) {...
For Nim, you should also use the `-d:danger` flag to get the fastest speed.
Hello everyone, Language/engine features seem to be very controversial and give us a lot of different opinions. Because of that, I have decided to use **default settings** for every language/engine...
TCL regex engine is different from other regex engines. It will be nice to see here in benchmark. More about TCL regex engine: https://www.princeton.edu/~mlovett/reference/Regular-Expressions.pdf
Henry Spencer wrote multiple regex libraries which were historically important and are still relevant today: https://garyhouston.github.io/regex/ The one that survives in production code today are the Tcl library which is...
Used 'useBytes = TRUE' flag. This flag works only with ANSI-text, while main implementation supports UTF.