I need to make an expression where there are no white spaces in the beginning, begins with street number that should be at least one digit and at most 4 digits and should end with a postal code of 6 digits. An example would be:
29 Younge Street M5E 1B2
I have this /^[^\s][a-zA-Z\s]+$/
but don't know how to add the extra conditions
Thanks