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?
|
|
|
STRTOK and an index operation should do the trick:
Or the last line could also be:
|
||||
|
|
|
You can use strread:
|
|||
|
|
|
TEXTSCAN works too.
returns a cell array where parts{1} is 'johndoe' and parts{2} is 'hotmail.com'. |
|||
|
|
|
For "easiest",
It would be slightly more complicated if you were looking for something with more than one character, or you weren't sure if there was exactly one @, and in that case MATLAB has a lot of functions for searching through text, including regular expressions (see |
|||
|
|
|
If this thread isn't completely enumerated by now, may I add another? A handy perl-based MATLAB function:
parts is a two element cell array similar to mtrw's implementation of textscan. Maybe overkill, but regexp is much more useful when splitting a string by multiple delimiting characters or pattern searching. The only downside is the use of regular expressions which I still haven't mastered after 15 years of coding. |
||||
|
|
|
I used strtok and strrep from Matlab instead. |
|||
|
String email = "johndoe@hotmail.com";
|
|||
|
|