Answers for "check if string is a number java"

8

java test if a string is a int

public static boolean isInt(String str) {
	
  	try {
      	@SuppressWarnings("unused")
    	int x = Integer.parseInt(str);
      	return true; //String is an Integer
	} catch (NumberFormatException e) {
    	return false; //String is not an Integer
	}
  	
}
Posted by: Guest on May-28-2020
0

java how to check string is number

public static boolean isNumeric(String strNum) {
    if (strNum == null) {
        return false;
    }
    try {
        double d = Double.parseDouble(strNum);
    } catch (NumberFormatException nfe) {
        return false;
    }
    return true;
}
Posted by: Guest on August-10-2021
2

how to check if a string has only numbers in java

// Java program for the above approach
// contains only digits
class GFG {

	// Function to check if a string
	// contains only digits
	public static boolean
	onlyDigits(String str, int n)
	{
		// Traverse the string from
		// start to end
		for (int i = 0; i < n; i++) {

			// Check if character is
			// digit from 0-9
			// then return true
			// else false
			if (str.charAt(i) >= '0'
				&& str.charAt(i) <= '9') {
				return true;
			}
			else {
				return false;
			}
		}
		return false;
	}

	// Driver Code
	public static void main(String args[])
	{
		// Given string str
		String str = "1234";
		int len = str.length();

		// Function Call
		System.out.println(onlyDigits(str, len));
	}
}
Posted by: Guest on May-18-2021
0

check if string is decimal java

Scanner in = new Scanner(System.in);
		
		String ip1 = in.nextLine();
		
		if( ip1.matches("^\\d+\\.\\d+") ) 
			System.out.println(ip1+"----is a decimal number");
		else
			System.out.println(ip1+"----is a not decimal number");
Posted by: Guest on May-11-2020
0

check if the given string is a number

//Add this to your code and call
static private boolean isMyNumber(String s){
        try{
            Integer.parseInt(s);
            return true;
        }catch (Exception e){
            return false;
        }
    }
Posted by: Guest on December-29-2020
0

determine if is string or int

string str = "3257fg";
for(int i = 0;i < (strlen(str) - 1);i++) {
    if((int)str[i] < 10) {
        // it is a number, so do some code
    } else {
        // it is not a number, do something else
    }
}
Posted by: Guest on September-23-2021

Code answers related to "check if string is a number java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language