Generation

generate functionSat, 12 Nov 2022

Generate random email address

email <- function(person_name){ name <- tolower(gsub("\\s+",".", person_name)) email <- paste("email", name, "@company.com", sep=".") return(email) } email("liu wen")

Want to kickstart your project?Use the new AI Studio to create your code