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
Steve Wortham -
Abhishek Jaiswal -
Tom J. -
Elves Santos -
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})+$