I have a regex ^\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,3})+$
. Now i want to allow all special characters(|,&,:) in it with out changing whole regex
thanks in advance
I have a regex ^\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,3})+$
. Now i want to allow all special characters(|,&,:) in it with out changing whole regex
thanks in advance
For further actions, you may consider blocking this person and/or reporting abuse
Felix from East Africa -
Rahul Sharma -
KAWSAR KABIR -
OpenSourcee -
Once suspended, suhana will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, suhana will be able to comment and publish posts again.
Once unpublished, all posts by suhana will become hidden and only accessible to themselves.
If suhana is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Suhana.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag suhana:
Unflagging suhana will restore default visibility to their posts.
Top comments (1)
@suhana , what to understand more on this like which email domain allows these as the email Ids?
But you can try with this Regex :-
^\w+([\$-|])@\w+([.-]?\w+)(.\w{2,3})+$