Filter löschen
Filter löschen

if i have a string say 'ec john nick' .how to delete ec and retain 'john nick'?

1 Ansicht (letzte 30 Tage)
.

Akzeptierte Antwort

John D'Errico
John D'Errico am 4 Jan. 2016
Bearbeitet: John D'Errico am 4 Jan. 2016
Not at all clear what you REALLY want to do here.
If all you want to do is to remove the first "word" from the string, then find the first occurrence of a space after a character. Then delete all up to that point. Any of these will help you out:
help regexp
help strfind
help find
I recommend regexp as the best way though.
If your question is to remove the explicit character string 'ec', then strfind will again help you, as will regexp.
If you wish to find the words 'john nick' and retain only that part, then again regexp, strfind will solve it.
As far as deleting part of a string, a string is just like any vector. You delete elements like this:
A = rand(1,10);
A(1:3) = [];
So that deleted the first three elements of A.
  4 Kommentare
John D'Errico
John D'Errico am 4 Jan. 2016
Ok. so then use regexp to find the first occurrence of a character, followed by a space. Then delete everything up to that point. Or keep everything after that point, which is equivalent.
Image Analyst
Image Analyst am 4 Jan. 2016
If all the person's names are in a single string, then you can split it up with John's handy "allwords" utility: http://www.mathworks.com/matlabcentral/fileexchange/27184-allwords to split the name up into first, middle, and last name, and then use strcmpi() to compare the strings you want to compare..

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by