I have a string “contact@dataflair.com”. Which string function can be used to split the string into two different strings “contact@dataflair” and “com”?
Answer Posted / Santosh Kumar Singh
You can use the strsplit() function in R to split the string. For example: `strsplit("contact@dataflair.com", split = "@")[[1]]` will return `["contact@dataflair", "com"]`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers