Skip to content

Instantly share code, notes, and snippets.

@vaibhavpandeyvpz
Last active April 10, 2020 10:16
Show Gist options
  • Save vaibhavpandeyvpz/d9fe194ccdff96ab2726937e62afb6df to your computer and use it in GitHub Desktop.
Save vaibhavpandeyvpz/d9fe194ccdff96ab2726937e62afb6df to your computer and use it in GitHub Desktop.
Search for emails in QString (Qt5)
QRegularExpression emails(R"([A-Z0-9a-z._-]{1,}@(\w+)\.(\w+)(?:\.(\w+))?)");
auto matches = emails.globalMatch(html);
while (matches.hasNext()) {
auto match = matches.next();
if (match.hasMatch()) {
auto email = match.captured(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment