Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7974451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:22:37+00:00 2026-06-04T08:22:37+00:00

Trying to create a regex pattern for email address check. That will allow a

  • 0

Trying to create a regex pattern for email address check. That will allow a dot (.) but not if there are more than one next to each other.

Should match:
test.test@test.com

Should not match:
test..test@test.com

Now I know there are thousands of examples on internet for e-mail matching, so please don’t post me links with complete solutions, I’m trying to learn here.

Actually the part that interests me the most is just the local part:
test.test that should match and test..test that should not match.
Thanks for helping out.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:22:38+00:00Added an answer on June 4, 2026 at 8:22 am

    You may allow any number of [^\.] (any character except a dot) and [^\.])\.[^\.] (a dot enclosed by two non-dots) by using a disjunction (the pipe symbol |) between them and putting the whole thing with * (any number of those) between ^ and $ so that the entire string consists of those. Here’s the code:

    $s1 = "test.test@test.com";
    $s2 = "test..test@test.com";
    $pattern = '/^([^\.]|([^\.])\.[^\.])*$/';
    echo "$s1: ", preg_match($pattern, $s1),"<p>","$s2: ", preg_match($pattern, $s2);
    

    Yields:

    test.test@test.com: 1
    test..test@test.com: 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a regex that will matches with 8-9. but won't matches
I'm no expert on Regex. I'm trying to create a regular expression that will
I am trying to create a regex that will take all files that do
I am trying to create a regex that will return false if the String
I'm trying to create a regex that will capture BB Codes, BB Codes with
I'm trying to create a regex pattern to extract A tags in html that
I'm trying to create a regex pattern that allows the user to create a
I'm trying to create a regex that will match the following: http://myurl.com/en/something I need
Hi I am trying to create a regex that will do the following grab
I am trying to create a regex that matches a US state abbreviations in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.