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