regex-benchmark VS regex

Compare regex-benchmark vs regex and see what are their differences.

regex-benchmark

It's just a simple regex benchmark of different programming languages. (by mariomka)

regex

An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs. (by rust-lang)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
regex-benchmark regex
9 91
309 3,345
- 2.1%
0.0 9.1
15 days ago 5 days ago
Dockerfile Rust
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

regex-benchmark

Posts with mentions or reviews of regex-benchmark. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-26.
  • Best regexp alternative for Go. Benchmarks. Plots.
    8 projects | dev.to | 26 Aug 2023
    Before we start comparing the aforementioned solutions, it is worth to show how bad things are with the standard regex library in Go. I found the project where the author compares the performance of standard regex engines of various languages. The point of this benchmark is to repeatedly run 3 regular expressions over a predefined text. Go came in 3rd place in this benchmark! From the end....
  • Rust vs. Go in 2023
    9 projects | news.ycombinator.com | 13 Aug 2023
    * Let you clone a map without rehashing every key to a new seed. I generally measure at least 15x speedup from this alone, unlocking very useful design patterns like "clone a map and apply a few temporary updates for a one-off operation like validation or simulation" with no extra code complexity. Go gives you no better option than slowly rehashing the entire map.

    And that's just hash maps. How about Go's regex engine being one of the slowest in the world while Rust's regex crate being one of the fastest:

    https://github.com/mariomka/regex-benchmark#optimized

  • Regex for lazy developers
    1 project | dev.to | 4 Jan 2023
    Languages Regex Benchmark
  • Elon is your new boss, time to refactor!
    1 project | /r/ProgrammerHumor | 30 Nov 2022
    Java is still pretty bad compared to C# (not to mention Rust or Nim)
  • Lyra: Fast, in-memory, typo-tolerant, full-text search engine in TypeScript
    10 projects | news.ycombinator.com | 29 Jul 2022
    https://github.com/mariomka/regex-benchmark

    And the always interesting techempower Project, which leaves the implementation to participants of each round. https://www.techempower.com/benchmarks/#section=data-r21&tes...

    Choose whatever category you wish there, js is faster in then go in almost all categories there.

    Even though I said it before, I'm going to repeat myself as I expect you to ignore my previous message: the language doesn't make any implementation fast or slow. You can have a well performing search engine in go, and JS. The performance difference will most likely not be caused by the language with these two choices. And the same will apply with C/Rust. The language won't make the engine performant creating a maximally performant search engine is hard

  • i'd like you to meet regex-
    3 projects | /r/ProgrammerHumor | 14 Mar 2022
    Also, regex engines are not created equally, at all. One of the best writeups I've ever read is from the ripgrep blog. Burntsushi knows regex. There's also this benchmark site which illustrates how general language performance is an entirely different metric than regex performance. Don't assume those benchmarks will cover your particular use case, though--different regex engines might handle your particular situation differently.
  • Go performance from version 1.2 to 1.18
    14 projects | news.ycombinator.com | 3 Feb 2022
    Interesting. Looking at this repo, they have

    Rust -> Ruby -> Java -> Golang

    https://github.com/mariomka/regex-benchmark

    Though it appears the numbers are two years old or so, and only for 3 specific regexes.

  • Hajime can now get hardware information about your MC server, all from Minecraft itself!
    3 projects | /r/admincraft | 31 Jan 2022
    id also be careful in claiming C++ std regex is faster than python, unless you actually have proof. there's a ton of information that in many cases its actually slower. https://github.com/mariomka/regex-benchmark. have you actually benchmarked your code? or was it just a naive assumption that because its C++ its just fast?
  • A Complete Course of the Raku programming language
    4 projects | news.ycombinator.com | 14 Jan 2021
    It is a matter of personal preference.

    I find that regular expressions and text-wrangling tasks are faster and easier in Perl than in other programming languages due to its accessible syntax and regular expression engine speed.

    This article shows the regular expression syntax in several popular programming languages: https://cs.lmu.edu/~ray/notes/regex/

    This GitHub repo gives some regex performance test benchmarks: https://github.com/mariomka/regex-benchmark Perl is pretty fast among the scripting languages that were benchmarked.

    If you are familiar with C / C++, then learning Perl is relatively fast and easy: https://perldoc.perl.org/perlintro

regex

Posts with mentions or reviews of regex. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-24.
  • Zed is now open source
    26 projects | news.ycombinator.com | 24 Jan 2024
    The homepage has a benchmark that compares Zed's "insertion latency" to other editors, and this is the description:

    > Open input.rs at the end of line 21 in rust-lang/regex. Type z 10 times, measure how long it takes for each z to display since hitting the z key.

    Could someone clarify what that means? My interpretation of that was to go to https://github.com/rust-lang/regex/blob/master/regex-cli/arg... and start typing 'z' at the end of line 21, but that doesn't seem to make any sense. I guess that repo got refactored and those instructions are out of date?

  • CryptoFlow: Building a secure and scalable system with Axum and SvelteKit - Part 3
    3 projects | dev.to | 8 Jan 2024
    We also used the avenue to sluggify the question title. We used regex to fish out and replace all occurrences of punctuation and symbol characters with an empty string and using the itertools crate, we joined the words back together into a single string, where each word is separated by a hyphen ("-").
  • Command Line Rust is a great book
    4 projects | /r/rust | 8 Dec 2023
    Command-Line Rust taught me how to use crates like clap, assert_cmd, and regex. I felt lost before because I didn't know about Rust's ecosystem--which is arguably as important as the language itself. Also, looking up and comparing libraries is a tiring task! blessed.rs is nice but Command-Line Rust really saved me from analysis paralysis.
  • Common Rust Lifetime Misconceptions
    4 projects | news.ycombinator.com | 4 Dec 2023
    burntsushi actually regrets making regex replace return a Cow: https://github.com/rust-lang/regex/issues/676#issuecomment-6.... I’m glad it does, and wish it took an impl Into> there, for the reasons discussed in the issue, but burntsushi has a lot more experience of the practical outcomes of this. Just something more to think about.
  • Advent of Code 2023 is nigh
    19 projects | news.ycombinator.com | 1 Dec 2023
    I'm not familiar with the AoC problem. You might be able to. But RegexSet doesn't give you match offsets.

    You can drop down to regex-automata, which does let you do multi-regex search and it will tell you which patterns match[1]. The docs have an example of a simple lexer[2]. But... that will only give you non-overlapping matches.

    You can drop down to an even lower level of abstraction and get multi-pattern overlapping matches[3], but it's awkward. The comment there explains that I had initially tried to provide a higher level API for it, but was unsure of what the semantics should be. Getting the starting position in particular is a bit of a wrinkle.

    [1]: https://docs.rs/regex-automata/latest/regex_automata/meta/in...

    [2]: https://docs.rs/regex-automata/latest/regex_automata/meta/st...

    [3]: https://github.com/rust-lang/regex/blob/837fd85e79fac2a4ea64...

  • Text Showdown: Gap Buffers vs. Ropes
    3 projects | news.ycombinator.com | 9 Oct 2023
    It’s not quite that simple, but folks are working on it.

    https://github.com/rust-lang/regex/issues/425#issuecomment-1...

    https://github.com/helix-editor/helix/pull/211#issuecomment-...

  • Please ask questions (rust-lang/regex)
    1 project | /r/hypeurls | 30 Aug 2023
    1 project | news.ycombinator.com | 28 Aug 2023
  • ScripterC - Rust-lang set
    2 projects | /r/scripterc | 13 Aug 2023
    Dependencies used: - regex - unicode_reader - rust decimal - tokio
  • Regex Engine Internals as a Library
    5 projects | news.ycombinator.com | 5 Jul 2023
    https://www.cs.princeton.edu/courses/archive/fall19/cos226/l... and https://kean.blog/post/lets-build-regex are excellent introductions to implementing a (very) simplified regex engine: construct a nondetermistic finite state automaton for the regex, then perform a graph search on the resulting digraph; if the vertex corresponding to your end state is reachable, you have a match.

    I think this exercise is valuable for anyone writing regexes to not only understand that there's less magic than one might think, but also to visualize a bunch of balls bouncing along an NFA - that bug you inevitably hit in production due to catastrophic backtracking now takes on a physical meaning!

    Separately re: the OP, https://github.com/rust-lang/regex/issues/822 (and specifically BurntSushi's comment at the very end of the issue) adds really useful context to the paragraph in the OP about niche APIs: https://blog.burntsushi.net/regex-internals/#problem-request... - searching with multiple regexes simultaneously against a text is both incredibly complex and incredibly useful, and I can't wait to see what the community comes up with for this pattern!

What are some alternatives?

When comparing regex-benchmark and regex you can also consider the following projects:

hyperscan - High-performance regular expression matching library

re2 - modern regular expression syntax everywhere with a painless upgrade path [Moved to: https://github.com/SonOfLilit/kleenexp]

sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.

node-re2 - node.js bindings for RE2: fast, safe alternative to backtracking regular expression engines.

orama - 🌌 Fast, dependency-free, full-text and vector search engine with typo tolerance, filters, facets, stemming, and more. Works with any JavaScript runtime, browser, server, service!

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

raku-course

ngrams - (Read-only) Generate n-grams

rakudo-appimage

whatlang-rs - Natural language detection library for Rust. Try demo online: https://whatlang.org/

tumblelog - A static tumblelog generator available as both a Perl and Python version

Fluent - Rust implementation of Project Fluent