Hi,
I have unstructured string data including tons of emails in a single cell. (around 5k row)
Inputs:
for eg, " Daniel. Beaudoin@x.Com'""Andrew.Sharp@x.ComBarbara.Zukor@x.ComBarbara.Zukor@x.Com / "
for eg, " Adam.Altberg@x.Com,Joe.Quinn@x.Com,Joe.Quinn@x.Com; Geoffrey.Cardy@x.Com,Joe.Quinn@x.com "
Note: There is no delimiter here. Separated either by , or ; or / or / / or ( )
Note: Almost every kind of domain is there(.uk,.org,.ca,.com etc.)
Outputs:
for eg, "daniel.beaudoin@x.com, andrew.sharp@x.com, barbara.zukor@x.com"
for eg, "adam.altberg@x.com, joe.quinn@x.com, geoffrey.cardy@x.com "
Summary:
need to clean each single cell and have it ready each unique emails in one cell seperated by comma(,)
Regards,