フィルターのクリア

how to extract file name

1 回表示 (過去 30 日間)
yan abr
yan abr 2017 年 12 月 12 日
コメント済み: yan abr 2017 年 12 月 12 日
Hi I am trying to extract a file name but i don´t want to extract it´s entire name.For example if i have 30 people with 3 different expressions each. I name them as 0101.txt...0103.txt,...,3001.txt...3003.txt. How could i extract only the first 2 digits that represent individual person? Thank you.

採用された回答

per isakson
per isakson 2017 年 12 月 12 日
編集済み: per isakson 2017 年 12 月 12 日
If I got you question right
cac = { '0101.txt', '0103.txt', '3001.txt', '3003.txt' };
out = regexp( cac, '^\d{2}', 'match' );
out{:}
outputs
ans =
'01'
ans =
'01'
ans =
'30'
ans =
'30'
  1 件のコメント
yan abr
yan abr 2017 年 12 月 12 日
i need to continue with another process on this..but at this stage i got your answer. Thank you very much sir.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by