regex extract email from strings

前端 未结 7 1467
陌清茗
陌清茗 2020-12-01 16:25

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

相关标签:
7条回答
  • 2020-12-01 17:23
    \b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}+\.[A-Z]{2,}
    
    0 讨论(0)
提交回复
热议问题