I am using regx email validation pattern in my angular application. As per requirement I Do not want the following characters: < > ( ) [ ] ; : , \
I am using below pattern.
let emailPattern = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i;
Can some one help me on this.