I need to extract the string after the numbers. Although the problem is that the number of digits at the front of the string is inconsistent. What I need is something similar like the Flash Fill in Excel. But I'll be doing it for 100K+ rows so Excel might not be able to handle the data. For example:
12345678aaa@mail.com
12345bbb@mail.com
123456789ccc@mail.com
I want the create another variable with the extracted string such as the following:
aaa@mail.com
bbb@mail.com
ccc@mail.com
Is this possible?
Thank you in advance!