Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
mak khatib
mak khatib el 8 de Mayo de 2017
Respondida: dpb el 8 de Mayo de 2017
how to read a letter from a string in a cell?

Respuestas (1)

dpb
dpb el 8 de Mayo de 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 =
.
>>

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by