fork download
  1. emails <- c("xyz@gmail.com", "abc@hotmail.com")
  2. emails_new <- gsub(".*@(.+)$", "\\1", emails)
  3. emails_new
Success #stdin #stdout 0.21s 60752KB
stdin
Standard input is empty
stdout
[1] "gmail.com"   "hotmail.com"