Validating email adresses in R

I currently program an automated report generation in R – participants fill out a questionnaire, and they receive a nicely formatted pdf with their personality profile. I use knitr, LaTex, and the sendmailR package.
Some participants did not provide valid email addresses, which caused the sendmail function to crash. Therefore I wanted some validation of email addresses – here’s the function:
[cc lang=”rsplus” escaped=”true”]
isValidEmail <- function(x) { grepl("\\<[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,}\\>“, as.character(x), ignore.case=TRUE)
}
[/cc]
Let’s test some valid and invalid adresses:
[cc lang=”rsplus” escaped=”true”]
# Valid adresses
isValidEmail(“felix@nicebread.de”)
isValidEmail(“felix.123.honeyBunny@nicebread.lmu.de”)
isValidEmail(“felix@nicebread.de “)
isValidEmail(” felix@nicebread.de”)
isValidEmail(“felix+batman@nicebread.de”)
isValidEmail(“felix@nicebread.office”)
# invalid addresses
isValidEmail(“felix@nicebread”)
isValidEmail(“felix@nicebread@de”)
isValidEmail(“felixnicebread.de”)
[/cc]
The regexp is taken from www.regular-expressions.info and adapted to the R style of regexp. Please note the many comments (e.g., here or here) about “Is there a single regexp that matches all valid email adresses?” (the answer is no).

7 thoughts on “Validating email adresses in R”

    1. That’s true, thanks for the hint! I changed the last part of the regexp from {2,4} to {2,} – now any TLD with >= 2 characters is valid.

  1. Could you give a hint on how you create the nicely formatted pdf?
    Does sendmailR have the capability to send emails with attachments of any kind?

    1. I will post about it soon – for your second question: yes.
      body <- list(emailText, mime_part(path_to_file)) sendmail(from, to, subject, body, control=list(smtpServer="mailout.xyz.de", verbose=TRUE))

    1. OMG 😉 – who has the time to build and test such regexps? I think I’ll stick to the 99.9% solution. Several changes would be needed to convert it to R-style …

Leave a Reply to FelixS Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.