I have a JAVA string that is being used to validate proper email addresses.
^[\\w'-]+(\\.[\\w'-]+)*@[A-Za-z0-9]+([.-][A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$
I want to user to be able to leave the address blank and not get an error message. How is this possible?