i want to validate following email id
email@-domain.com
for that i am using following regex but it is not validating above email id , what type of change in my current regex works for me
here is my regex
/^[A-Za-z0-9_\+-]+(\.[A-Za-z0-9_\+-]+)*@[A-Za-z0-9-]+(\.[A-Za-z0-9-]+)*\.([A-Za-z]{2,10})$/