Effacer les filtres
Effacer les filtres

check String for letters ?

2 vues (au cours des 30 derniers jours)
Max Müller
Max Müller le 27 Sep 2014
Modifié(e) : per isakson le 27 Sep 2014
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 commentaire
Max Müller
Max Müller le 27 Sep 2014
see ya tomorrow

Connectez-vous pour commenter.

Réponse acceptée

per isakson
per isakson le 27 Sep 2014
Modifié(e) : per isakson le 27 Sep 2014
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

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Identification dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by