What is the fastest way to determine whether a string is a number?
조회 수: 93 (최근 30일)
이전 댓글 표시
Hi, I have a string x and in order to determine wether it is a number one can do the following
try
flag = isnumeric(eval(x));
catch
flag=false;
end
Is there a better and faster way to do this?
Thanks
Pat.
댓글 수: 0
채택된 답변
Sean de Wolski
2014년 7월 3일
편집: Sean de Wolski
2014년 7월 3일
Probably:
isnan(str2double(str))
This won't need try/catch either.
Anything with eval in it will definitely not be fast.
추가 답변 (1개)
Cedric
2014년 7월 3일
편집: Cedric
2014년 7월 3일
The following should be quite fast (faster than STR2DOUBLE for example):
flag = ~isempty( sscanf( x, '%f' )) ;
EDIT: if characters can appear only at the end of the string, the following will be very fast
flag = x(end) >= '0' && x(end) <='9'
댓글 수: 6
Cedric
2014년 7월 4일
편집: Cedric
2014년 7월 4일
Can these numbers be floating point or are they integers only? Can they be negative?
Most important, do you really need to optimize further than STR2DOUBLE? The latter is certainly the most straightforward approach; most alternatives would be tricks based on some assumption(s).
For example, if you are only dealing with positive integers, the following will be quite fast
flag = all(x >= '0') && all(x <= '9') ;
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!