How can I find an email address inside HTML code with Nokogiri? I supose I will need to use regex, but don't know how.
Example code
<html>
<title>Example</title>
<body>
This is an example text.
example@example.com
</body>
</html>
There is an answer covering the case when there is a href to mail_to, but that is not my case. The email addresses are sometimes inside a link, but not always.
Thanks