“Jak sprawdzić numer w ciągu” Kod odpowiedzi

Jak sprawdzić numer w ciągu

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

Sprawdź, czy podany ciąg to numer

//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

Odpowiedzi podobne do “Jak sprawdzić numer w ciągu”

Pytania podobne do “Jak sprawdzić numer w ciągu”

Więcej pokrewnych odpowiedzi na “Jak sprawdzić numer w ciągu” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu