Is there a way to associate two regex ?
I have this one which prevents user to use this email (test@test.com)
pattern="^((?!test@test.com).)*$"
I also have one which validates email syntax
pattern="[a-z0-9._%+-]{3,}@[a-z]{3,}([.]{1}[a-z]{2,}|[.]{1}[a-z]{2,}[.]{1}[a-z]{2,})"
How to merge those two regex in order to prevent user to user test@test.com and to validate the email syntax ?
I tried to use an OR operator (single pipe) but I am missing something, it doesn't work ...
Thanks !