While I know that matching a street address will never be perfect I\'m looking to create a couple of regex statements that will get close most of the time.
I\'m tr
This works for me!
if(address.match(/^\s*\S+(?:\s+\S+){2}/)) { console.log('good address!') }