Anyone use Experian to manage their data quality? We rarely use mailing addresses, but we do use emails a lot... Anyone have a feedback on whether they find Experian worthwhile (or not) for email data?
Thanks!
Carrie
Hi Carrie, We're considering moving away from Experian as we've not found the integration particularly user friendly. I just use a basic regex to test emails, not perfect but catches a lot of the basic attempts to fake email addresses. Regex code below, should work with most coding languages and it's free!/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/ThanksWill
This is awesome, thank you so much!