I am using PHP to find e-mail address in a given text. My current regex is:
'/([\w+\.]*\w+@[\w+\.]*\w+[\w+\-\w+]*\.\w+)/is'
It is consuming a lot of CPU resources. Is there any optimized and low resource utilized ( i.e CPU ) RegEx for finding a Valid E-mails in a given text.