I want to know if by using regular expressions I am able to extract emails from the following strings?
The following RE pattern is .*@.*match with all st
.*@.*
Hope this will work.
[\w\.]+\@[\w]+(?:\.[\w]{3}|\.[\w]{2}\.[\w]{2})\b
Regex Demo