Azzera filtri
Azzera filtri

how to read a letter from a string in a cell?

2 visualizzazioni (ultimi 30 giorni)
mak khatib
mak khatib il 8 Mag 2017
Risposto: dpb il 8 Mag 2017
how to read a letter from a string in a cell?

Risposte (1)

dpb
dpb il 8 Mag 2017
Just as in any other cell addressing; use the indexed addressing mode--
>> whos s % just happened to be in workspace at the moment...
Name Size Bytes Class Attributes
s 222x1 16706 cell
>> s(1) % the first cell
ans =
'-40.01'
>> s{1} % the first cell content
ans =
-40.01
>> s{1}(4) % the fourth character in the cell content..
ans =
.
>>

Community Treasure Hunt

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

Start Hunting!

Translated by