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

  • SEARCH
  • Home
  • 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 9189807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:19:03+00:00 2026-06-17T20:19:03+00:00

In the stack-overflow question here , it was explained that you can remove emails

  • 0

In the stack-overflow question here , it was explained that you can remove emails with this code:

$pattern = "/[^@\s]*@[^@\s]*\.[^@\s]*/";
$replacement = "[removed]";
preg_replace($pattern, $replacement, $string); 

This removes stuff like johndoe@gmail.com – how do I modify the regular expression so that I remove something like @johnDoe from a chunk of text?

I really don’t understand regular expression that well.

  • 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-17T20:19:05+00:00Added an answer on June 17, 2026 at 8:19 pm

    use

    $pattern = "/@[^@\s]*/";
    

    In [^@\s]:

    • \s stands for any space character
    • [@\s] stands for a character group, containing \s (i.e. space) and the @ character. it matches either @ or \s
    • [^@\s] stands for the character group that is not @\s
    • afterall, [^@\s] matches a single character that is not @ character or \s (i.e. spaces)

    * after it stands for the previous token (i.e. [^@\s] here) can repeat zero or more times. Hence, [^@\s]* matches string of any length as long as it does not contain @ or \s


    As a side note, your link give a much-simplified regex for matching e-mails. The perfect way of matching e-mails are no simple matter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Today I stumbled upon a question here on Stack Overflow - How do I
I have read an answer to another question here on Stack Overflow. Let me
I was just messing around to answer someone's question here on Stack Overflow, when
I am new here and hope my first question meets stack overflow's requirements. I
this is my first question on stack overflow, so be gentle. Let me first
Can someone help me understand this code? # Remove trailing ? RewriteCond %{THE_REQUEST} ?
Here is an easy question. I wrote this C++ code: char chaine[12]; cin.width(12); cin
I've been using a piece of jquery code from stack overflow. Here's the link
There is a question here in stackoverflow with the same title but that is
While answering to a question about that here: https://stackoverflow.com/a/9872630/82609 I tried to do the

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.