I need to take characters out of a string using isnan and str2double.

조회 수: 2 (최근 30일)
Rafael Perales
Rafael Perales 2016년 10월 26일
댓글: Thorsten 2016년 10월 26일
Basically I need to take out the numeric values out of a string using these functions. I keep trying but some of the characters still come out as numbers.
This is an example
a='281-890-8905';
o=length(a);
for k=1:o
x=isnan(a(k));
if x==0
y=str2double(a(k));
end
end

채택된 답변

Thorsten
Thorsten 2016년 10월 26일
cellfun(@(x) sscanf(x, '%f'), regexp(a, '(\d+)', 'match'))
  댓글 수: 3
Rafael Perales
Rafael Perales 2016년 10월 26일
This worked I just took out the plus sign to make it a single vector.Thank you
Thorsten
Thorsten 2016년 10월 26일
Thank you Guillaume for pointing this out.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jan
Jan 2016년 10월 26일
편집: Jan 2016년 10월 26일
Faster and simpler:
a = '281-890-8905';
s = a(a >= '0' & a <= '9') - '0';
Or:
s = a(isstrprop(a, 'digit')) - '0';

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by