How to extract email ID from browser

Hi

I wish to extract comments from a particular linkedin post. For this I used “data scrapping” and was able to extract the name of the person who had commented and his/her comment. Now i also want that if the comment holds any email id then that should be saved seperately. Can anyone please tell how this can be done ?

@certified

hi @samya, use Regex to find email ID in the given comment with the following pattern,

[a-z|\.]{0,}@\w*.[a-z|\.]*

Regards,
Dominic Arul Collins V

Hi,