I have an old system that for some reason developer inserted the Y/N to email authorization into the email address field. The data looks like
Ymyemaila@home.com;SAM.WASHER@us.gov;heythere@umm.edu
Currently, I am trying to parse out using the following in REGEX tool:
([Y|N])(.*[a-z]+[.][a-z]+[@][a-z]+[.][a-z]+) but it isn't working consistently. Anyone have any suggestions?
Thank you