I have javascript code for checking the zipcode
var regexObj =
/^(?=[^-]*-?[^-]*$)[0-9-]*[0-9]$/;
I need to add one more condition to this,ie
make it so that user has to enter a minimum of 3 characters
Can any one say, how can i modify my regular expression for that