Writing a GREP to find any email with at least one uppercase letter
In my line of work, all emails must be lowercased. Typically an email is on a forced line break of its own. For example ^nem@emconsultinginc.com^n as such. Sometimes it has to be split due to columns such as: ^nem@em^nconsultinginc.com^n.
How do I write a grep that will look for next lines behind and ahead, with a string of text including: Upper Case, Lower Case, Numbers, Hyphens, Underscores, and potentially other next lines. But ONLY find those emails that include an uppercase letter. I wish to ignore the search finding emails that are completely lowercased.
