How do I read out a specific string/value out of one excel cell

2 ビュー (過去 30 日間)
Benedikt Friedl
Benedikt Friedl 2021 年 10 月 5 日
回答済み: Geoff Hayes 2021 年 10 月 5 日
Hi,
I want to lable my x-axis with a string from a excle cell. My problem is that in that specific cell are more then one strings. So e.g. in my cell 'A14' is "house, garden, dog", all seperated with a comma and I just want to have the string "garden" to lable my x-axis.
hope you can help me

採用された回答

Geoff Hayes
Geoff Hayes 2021 年 10 月 5 日
@Benedikt Friedl - take the cell data which is the comma-separated string and then use split to split the string at the commas:
myString = 'house,garden,dog';
splitStringArray = split(myString, ',');
xLabel = splitStringArray{2}

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by