regex-generator VS RegExr

Compare regex-generator vs RegExr and see what are their differences.

RegExr

RegExr is a HTML/JS based tool for creating, testing, and learning about Regular Expressions. (by gskinner)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
regex-generator RegExr
26 579
373 9,548
- -
8.2 0.0
21 days ago about 1 month ago
Kotlin JavaScript
MIT License GNU General Public License v3.0 only
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-generator

Posts with mentions or reviews of regex-generator. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-10.
  • Is it a bird? Is it a plane? Test it with Regular Expressions
    1 project | /r/xpor | 15 Sep 2023
    Whilst Regular Expressions are undeniably powerful --- virtually NOBODY knows how to set up Regular Expressions!  There are a number of tools that help you build / test regular expressions, such as https://regex-generator.olafneumann.org/  or https://retool.com/utilities/regex-generator (no responsibilities accepted for the use of any  of these tools!)
  • Regex not working
    2 projects | /r/vba | 10 Jul 2023
    Ho did you arrive at the regex? I usually use a website to , such as https://regex101.com/, https://regexr.com/, https://regex-generator.olafneumann.org/ in combination of each other, as some explain better than the other.
  • Regex Generator?
    1 project | /r/AutoModerator | 17 Apr 2023
    Is there a regex generator for Reddit's Automod or Python? I've already tried Googling "regex generator python" but I only came up with https://regex-generator.olafneumann.org/, https://pythex.org/, https://regex101.com/, and a whole bunch of build/testers. Olaf Neumann's generator seemed the most promising, but I couldn't get it to work because I didn't know how to separate each phrase, i.e. "you're dumb," "your dumb," "youre dumb," and "you are dumb." I was able to make sense of https://www.javainuse.com/rexgenerator but it's only for java.
  • [P] LazyShell - GPT based autocomplete for zsh
    3 projects | /r/MachineLearning | 4 Mar 2023
    Shout out to https://regex-generator.olafneumann.org/
  • On god the muting has not worked so far, but I'm going to try. Give me new terms to block please.
    2 projects | /r/CuratedTumblr | 14 Feb 2023
    Here's some more websites that might help if you're interested: https://regexr.com/ - Lets you test the regex https://regex-generator.olafneumann.org/ - Can help you generate regex https://en.wikipedia.org/wiki/Regular_expression#Basic_concepts - Basic syntax
  • Code newb trying to add an automod action for specific word triggers in posts.
    1 project | /r/AutoModerator | 29 Dec 2022
    https://regex-generator.olafneumann.org/ (type in any text and it will suggest a matching regex)
  • Egrep: Finding duplicate words
    1 project | /r/AskComputerScience | 11 Dec 2022
    I really like this tool to generate regex. It may not generate exactly what you need, but it'll get you on the right track. Often times, it does what I need.
  • need to remove all string that come after "-" but only if "-" comes after "**"
    1 project | /r/googlesheets | 29 Aug 2022
  • Cases: Custom input mask on field
    1 project | /r/salesforce | 1 Aug 2022
    Nah, just use a RegEx generator and then the REGEX(text, regex_text) in a validation rule and you are done.
  • AutoRegex
    4 projects | news.ycombinator.com | 9 Jul 2022
    This is a special case of the general problem of program synthesis[1][2][3][4], where the search space of possible programs are all regex strings and the seed driving the synthesis is Input-Output examples.

    There's research [5][6] as well as practical tools [7][8][9].

    [1] https://en.wikipedia.org/wiki/Program_synthesis

    [2] https://www.microsoft.com/en-us/research/project/program-syn...

    [3] https://dl.acm.org/doi/10.1145/1836089.1836091

    [4] https://royalsocietypublishing.org/doi/10.1098/rsta.2015.040...

    [5] https://cs.stanford.edu/~minalee/pdf/gpce2016-alpharegex.pdf

    [6] https://www.researchgate.net/publication/261794574_Automatic...

    [7] https://regex-generator.olafneumann.org/

    [8] http://regex.inginf.units.it/extract/

    [9] https://stackoverflow.com/questions/6219790/need-a-regex-too...

RegExr

Posts with mentions or reviews of RegExr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-10.
  • Hot Springs
    1 project | dev.to | 3 Jan 2024
    When thinking about how I might compare an arrangement to the contiguous group of damaged springs, I used regexr.com to experiment with very specific regexs that used the numbers.
  • Demystifying Regular Expressions (Regex): A Chat Sheet Guide
    1 project | dev.to | 27 Dec 2023
    There are plenty of online regex tools to test and experiment with regex patterns. Some popular ones include RegExr, RegEx101, and RegexPlanet.
  • Camel Cards
    1 project | dev.to | 16 Dec 2023
    Using regexr.com it at least appears to work as expected.
  • [2023 Day 2] [Python] Stuck on the first task
    1 project | /r/adventofcode | 9 Dec 2023
    If you are going to use RE's, use something like https://regexr.com/ to double check that they're doing what you want. I was suspicious of your 'cols = re.findall(r'\d+ .....', i)' line, and indeed it does miss some columns. You should rethink your column detection, and either not use REs or learn how to use capture groups and \w. There would then be no reason to use yet another RE in your column iterator to extract the numbers which you've already detected.
  • 2023 Day 2 Part A [Java] regex pattern not matching
    1 project | /r/adventofcode | 4 Dec 2023
    First time posting here, let me know if I need to edit post to conform to any rules. My issue is that I'm trying to match regex pattern to separate out the number of cubes drawn and its color but my Matcher object seems to not be returning any matches so it's throwing a no match found exception when I try to call digitMatcher.group(). I have tested my regex pattern on sites like regexr and it seems to pass there but it's not working for some reason here. I use the same type of regex on day one and it work there so I'm not sure where my regex pattern is failing here. I'm talking about specifically in my isGameValid() method where I create a matcher base on a pattern I made above. Through debugging I know that I separated the string color pairing correctly and that my Matcher object has the correct regex pattern, it's just not matching for some reason. Any help would be appreciated. Code below:
  • Trebuchet?!
    1 project | dev.to | 1 Dec 2023
    Regexr has been an invaluable tool as a beginner.
  • 10 Lesser-Known Tools and Websites to Spice Up Your Developer Toolbox
    8 projects | dev.to | 10 Oct 2023
    RegExr simplifies working with regular expressions. This online tool provides a visual interface for building and testing regex patterns in real-time, making regex less intimidating.
  • What regex flavour does vscode use in language-configuration.json
    1 project | /r/vscode | 10 Jul 2023
  • Regex not working
    2 projects | /r/vba | 10 Jul 2023
    Ho did you arrive at the regex? I usually use a website to , such as https://regex101.com/, https://regexr.com/, https://regex-generator.olafneumann.org/ in combination of each other, as some explain better than the other.
  • Capture the first instance, but don't stop?
    1 project | /r/regex | 8 Jul 2023
    I pulled this into regexr.com and it yielded the same results except it removed :41:

What are some alternatives?

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

py_regular_expressions - Learn Python Regular Expressions step by step from beginner to advanced levels

RegEx101 - This repository is currently only used for issue tracking for www.regex101.com

melody - Melody is a language that compiles to regular expressions and aims to be more readable and maintainable

RegExpBuilder

kleenexp - modern regular expression syntax everywhere with a painless upgrade path

Visual Studio Code - Visual Studio Code

regexgen - Generate regular expressions that match a set of strings

CyberChef - The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis

regexgen-ruby - Generate regular expressions that match a set of strings

self-hosted - Sentry, feature-complete and packaged up for low-volume deployments and proofs-of-concept

RandomStuff - Random Stuff

Regexly - WYSIWYG Regex playground for those who JavaScript