필터 지우기
필터 지우기

How to check if a string contains only numbers?

조회 수: 241 (최근 30일)
Rahul Pillai
Rahul Pillai 2017년 12월 14일
댓글: YT 2017년 12월 15일
Is there any expression for this ? For example :
-100 should return 1
a100b should return 0
0.1256 should return 1 and so on

채택된 답변

Walter Roberson
Walter Roberson 2017년 12월 14일
The easiest way is to check if str2double() returns nan. Otherwise you need to parse the string and there are a number of odd cases to account for in scientific notation.
Note: if you do use str2double() you should give some consideration as to what result you want for complex numbers, whether those are to be treated as numeric or as invalid because of the 'i' or 'j' present.
  댓글 수: 4
Stephen23
Stephen23 2017년 12월 15일
"why would it be easier than isnumeric()?"
Because isnumeric tests if the type is numeric. The question specifically states the input is string/char.
YT
YT 2017년 12월 15일
@replies, thanks for clarifying. Somehow I didn't read the title well enough. I'll remove my answer.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by