subtracting a number from string
8 ビュー (過去 30 日間)
古いコメントを表示
how i can subtract a number from string ?
for example :
subject1_EO - i want to extract only number one..
回答 (2 件)
Star Strider
2019 年 5 月 21 日
One approach:
str = 'subject1_EO';
nrc = regexp(str, '\d+', 'match')
nr = str2double(nrc{:})
producing:
nrc =
1×1 cell array
{'1'}
nr =
1
2 件のコメント
Stephen23
2019 年 5 月 21 日
+1 a cunning use of a comma-separated list combined with the demand-driven output of nested functions. Explicit indexing is clearer though:
nr = str2double(nrc{1})
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!