I am trying to work up a Regex to extract email addresses off a WP directory using WebHarvy (.NET)
The emails could be in multiple formats, using dots and underscores and so I tried the following expressions
(\w+|\w+(\W|\.)\w+)@\w+.\w+
\w.+|\w+\S\w+@\w+\.\w+
Though they seem to be working in the Regexstorm tester, when I am using them in WebHarvy, they are only extracting the part preceding the @
Please advise