Need help looping through each element in cell array and editing the elements?

2 ビュー (過去 30 日間)
cocopuffs
cocopuffs 2015 年 8 月 10 日
コメント済み: cocopuffs 2015 年 8 月 10 日
Hi,
I currently have a 10000 x 1 cell array, with each element corresponding to text that look like this: '5/13/2014 16:14,911,724 Biomarkers_neuron_ca_T05-13-14.csv'. I want to loop through each of these elements and delete all text before Biomarkers as well as the '.csv' to be left with elements: 'Biomarkers_neuron_ca_T05-13-14' and so on.
Appreciate the help!

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 8 月 10 日
str='5/13/2014 16:14,911,724 Biomarkers_neuron_ca_T05-13-14.csv'
out=regexpi(str,'\<Biomarkers.+','match')
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2015 年 8 月 10 日
str={'5/13/2014 16:14,911,724 Untitled_neuron_ca_T05-13-14.csv','5/13/2014 16:14,911,724 Biomarkers_neuron_ca_T05-13-14.csv'}
out=regexpi(str,'\<\S*.csv\>','match')
out{:}
cocopuffs
cocopuffs 2015 年 8 月 10 日
I actually incorporated an if-statement to fix my issue, but your code is certainly more efficient. Thank you for your help!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by