I have columns with several cells like this:
"Hi my email is mail@mail.com feel free to email me!"
"Hey, this is my email: mail2@mail.com"
I want to create a new column from there with this cells:
"mail@mail.com"
"mail2@mail.com"
Thank you!
I have columns with several cells like this:
"Hi my email is mail@mail.com feel free to email me!"
"Hey, this is my email: mail2@mail.com"
I want to create a new column from there with this cells:
"mail@mail.com"
"mail2@mail.com"
Thank you!
 
    
     
    
    You can search the for mail adresses with regex (take a look here). An easy example for such a regex would be /\b\S+@\S+\.\S+\b/
To use it in OpenRefine:
value.find(/\b\S+@\S+\.\S+\b/)[0]