Hello Team
How could we extract data in Below format
email id : aak889@yahoo.com , jenny_jeh@yahoo.com
So emails with @yahoo should be extracted
Output stored as
aak889@yahoo.com , jenny_jeh@yahoo.com
1)Could we modify below one
(?<=email id\s).*(?<=[yahoo.com])
- How can we handle scenario if present in this format (example typed ,)
email id : aak889@yahoo.com , , jenny_jeh@yahoo.com
Thanks in advance