Uppercase string from the cell array
6 views (last 30 days)
Show older comments
Gopalakrishnan venkatesan
on 12 Aug 2015
I have a cell array a = {'AA_DFA_DD' ,'DSFA_dfaf' ,'DDDD' , 'DFE1' ,'dfs_DD'}
How can extract only the upper case string from the cell array
my answer should be {'AA_DFA_DD',[],'DDDD','DFE1',[]}
How can i do this?
Thanks a lot
1 Comment
Accepted Answer
Stephen23
on 12 Aug 2015
Edited: Stephen23
on 12 Aug 2015
regexp(a,'^[^a-z]+$','match')
More Answers (1)
Azzi Abdelmalek
on 12 Aug 2015
Edited: Azzi Abdelmalek
on 12 Aug 2015
out=a(cellfun(@(x,y) isequal(x,y),a,upper(a)))
or
out=cell(size(a))
idx=cellfun(@(x,y) isequal(x,y),a,upper(a))
out(idx)=a(idx)
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!