• so, where’s the email address regex? that’s where this lives or dies. there is no reason to use this for extremely simple happy-path regexes.

    i’m having a tough time understanding who this is for. a beginner might think this is great, but they’re shooting themselves in the foot by adding an additional layer of abstraction rather than reading something to learn the basics.

    • I am of the opinion that regex for email address is a bad idea. The only two things that you need to check an email address are:

      Does the address contain an @ symbol?
      Is there a dot to the right of the @ symbol?

      Then just try to deliver to it, and let the MTA do the rest.

      Email addresses can be complicated, and there’s plenty of valid addresses that can be excluded by attempts at regex validation.

      @custom_situation @yoavlavi

    • I disagree. Anyone familiar with regex can debug these statements post conversion. Anyone not familiar with regex is going to have to learn something in order to debug the statement. I’d rather learn something that’s expressive and easy to visually parse.

      regex syntax is a vestige of the old “as few bytes as possible” era where every character of code had to be written personally. It’s an obsolete way of thinking for the vast majority of programming.