Remove cells that contain only two or one character
Show older comments
I have a variable that contain large cell arrays of strings but some of the cells contains strings that are meaningless such asç
xx = {'animal','a','aa','bc','dog','car','computer','screen','zx','tt','c','pen','ss'}
I would like to use regexp but I couldnt find appropriate expression to match two or single character.
Any sugguestion is highly appreciated.
Sami
Accepted Answer
More Answers (1)
Andrei Bobrov
on 11 Mar 2014
Edited: Andrei Bobrov
on 11 Mar 2014
xx = {'animal','a','aa','bc','dog','car','computer','screen','zx','tt','c','pen','ss'}';
out = xx(cellfun(@numel,xx) <= 2)
:)
out = xx(cellfun(@numel,xx) > 2)
1 Comment
KnowledgeSeeker
on 11 Mar 2014
Edited: KnowledgeSeeker
on 11 Mar 2014
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!