“Comment vérifier un nombre en chaîne” Réponses codées

Comment vérifier un nombre en chaîne

To find whether a given string contains a number,
convert it to a character array and find whether 
each character in the array is a digit using the isDigit() 
method of the Character class
Viper

Vérifiez si la chaîne donnée est un nombre

//Add this to your code and call
static private boolean isMyNumber(String s){
        try{
            Integer.parseInt(s);
            return true;
        }catch (Exception e){
            return false;
        }
    }
A5

Réponses similaires à “Comment vérifier un nombre en chaîne”

Questions similaires à “Comment vérifier un nombre en chaîne”

Plus de réponses similaires à “Comment vérifier un nombre en chaîne” dans C++

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code