check String for letters ?

1 回表示 (過去 30 日間)
Max Müller
Max Müller 2014 年 9 月 27 日
編集済み: per isakson 2014 年 9 月 27 日
Hey Guys, I have an Editbox and I want to start my program only if the Editbox Input are only numbers. Unfortunately, get(handle.editbox,'String') gives the Input back as String. So how can i check whether the user only entered numbers ?
isnumeric wont work i guess
  1 件のコメント
Max Müller
Max Müller 2014 年 9 月 27 日
see ya tomorrow

サインインしてコメントする。

採用された回答

per isakson
per isakson 2014 年 9 月 27 日
編集済み: per isakson 2014 年 9 月 27 日
One way
is_num = not( isnan( str2double( str ) ) );
or
is_num = not( isnan( str2double( get(handle.editbox,'String') ) ) );
&nbsp
Won't work if user inputs "nan" :-(
>> isnumeric( nan )
ans =
1

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Identification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by