Filter löschen
Filter löschen

How do you convert the content of one cell of a character/cell array to a string?

1 Ansicht (letzte 30 Tage)
How do you convert the content of one cell of a character/cell array to a string?

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 8 Mai 2018
Bearbeitet: Ameer Hamza am 8 Mai 2018
string(cellArray);
To combine them all in one string use
strjoin(cellArray)
  4 Kommentare
Eliah Verbeemen
Eliah Verbeemen am 8 Mai 2018
I found a very unhandy possibility filelines2 = strsplit(filecontent, 'word that one search'); [OO,OOO]= size(filelines2); if OOO>1 (the word is present)
Guillaume
Guillaume am 8 Mai 2018
@eliah,
You seem to be using very imprecise terms to describe the type of your data. A structure array has a very precise meaning in matlab. So does cell array. They're two very different types and also completely different from what is shown in you screenshot, a char array.
Someone of you proposed: NumberOfCell=find(cellfun(@strcmp,...
That's very convoluted. It is very likely that a simple regexp is all that is needed but more details needed on the input and desired output.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion 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