フィルターのクリア

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

2 ビュー (過去 30 日間)
mak khatib
mak khatib 2017 年 5 月 8 日
回答済み: dpb 2017 年 5 月 8 日
how to read a letter from a string in a cell?

回答 (1 件)

dpb
dpb 2017 年 5 月 8 日
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 =
.
>>

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by