Suppose I have a string 'johndoe@hotmail.com'. I want to store the string before and after “@” into 2 separate strings. What would be the easiest method of finding the “@” character or other characters in the string?
Suppose I have a string ‘johndoe@hotmail.com’ . I want to store the string before
Share
I used strtok and strrep from Matlab instead.