I would like to validate (select) db with the appropriate email format.
SO related post here
Example: Selecting the appropriate format:
example.data <- c("tint@tint.com","mailto:tint@tint.com","@tint.com",
"tint@","tint.tint.com",
"orange.com","orange@orange","orange@orange.com",
"e-mail: k-supra@k-supra.com","mailto:%20k-supra@k-supra.com")
desired.out <- c("tint@tint.com","mailto:tint@tint.com","orange@orange.com",
"k-supra@k-supra.com","k-supra@k-supra.com")
Would someone share working solution? Thanks.