Exclude Digits from String using Regexp in MATLAB

5 views (last 30 days)
Need to exclude Numbers from String and returns cell arrays of strings in MATLAB
e.g str = 'abc76.5_pol0.00_Ev0.3'
output {'abc','pol','Ev'}

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 27 Aug 2014
Edited: Andrei Bobrov on 27 Aug 2014
regexp(str,'[^\d_\.]*','match')
or
regexp(str,'[a-zA-Z]*','match')

More Answers (0)

Community Treasure Hunt

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

Start Hunting!