Exclude Digits from String using Regexp in MATLAB

13 次查看(过去 30 天)
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'}

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by