Simple Address Validation
This tries to validate the address in English-compliant formats.
Note: Not tested for script languages Arabic.
const regExp = /^(?![ -.&,'":?!/])(?!.[- &'":]$)(?!.[-.#@&,:?!/]{2})[a-zA-Z0-9- .#@&,_'":.?!/]+$/;
`
Submitted by Sowed Castelli - 3 years ago