I need assistance with validating multiple email inputs using regex in Angular. I am looking to enforce a specific format for the emails, such as:
Examples:
*****@zigurat.com
*****@test.com
*****@partlastic.com
The ***** can be any characters, but the domain after @ must match the specified formats shown above. Can anyone provide guidance on how to achieve this multiple email validation in Angular using regex?
Thank you for your help!