Check if a given string is a valid number (Integer or Floating Point) in Java
Last Updated :
03 May, 2023
In the article Check if a given string is a valid number, we have discussed general approach to check whether a string is a valid number or not. In Java we can use Wrapper classes parse() methods along with try-catch blocks to check for a number.
For integer number
Integer class provides a static method parseInt() which will throw NumberFormatException if the String does not contain a parsable int. We will catch this exception using catch block and thus confirm that given string is not a valid integer number.Below is the java program to demonstrate the same.
Implementation:
Java
// Java program to check whether given string
// is a valid integer number
class GFG {
public static void main(String[] args)
{
String input1 = "abc";
String input2 = "1234";
try {
// checking valid integer using parseInt()
// method
Integer.parseInt(input1);
System.out.println(
input1 + " is a valid integer number");
}
catch (NumberFormatException e) {
System.out.println(
input1 + " is not a valid integer number");
}
try {
// checking valid integer using parseInt()
// method
Integer.parseInt(input2);
System.out.println(
input2 + " is a valid integer number");
}
catch (NumberFormatException e) {
System.out.println(
input2 + " is not a valid integer number");
}
}
}
Outputabc is not a valid integer number
1234 is a valid integer number
The time complexity of this program is O(1), because it performs a fixed set of operations that do not depend on the input size.
The space complexity of the program is also O(1), because it only uses a fixed amount of memory to store the two String variables input1 and input2.
For float number
Float class provides a static method parseFloat() which will throw NumberFormatException if the String does not contain a parsable float. We will catch this exception using catch block and thus confirm that given string is not a valid float number.If string is null, this method will throw NullPointerException.Below is the java program to demonstrate the same.
Implementation:
Java
// Java program to check whether given string
// is a valid float number.
class GFG {
public static void main(String[] args)
{
String input1 = "10e5.4";
String input2 = "2e10";
try {
// checking valid float using parseInt() method
Float.parseFloat(input1);
System.out.println(
input1 + " is a valid float number");
}
catch (NumberFormatException e) {
System.out.println(
input1 + " is not a valid float number");
}
try {
// checking valid float using parseInt() method
Float.parseFloat(input2);
System.out.println(
input2 + " is a valid float number");
}
catch (NumberFormatException e) {
System.out.println(
input2 + " is not a valid float number");
}
}
}
Output10e5.4 is not a valid float number
2e10 is a valid float number
The time complexity of this program is O(1) because it performs a constant number of operations to check each input string.
The space complexity is also O(1) because it uses a constant amount of memory to store the input strings and the exception objects.
For big numbers
We can use BigInteger and BigDecimal class constructors for large numbers.Below is the java program to demonstrate the same.
Implementation:
Java
// Java program to check whether given string
// is a valid number.
import java.math.BigDecimal;
import java.math.BigInteger;
class GFG {
public static void main(String[] args)
{
String input1
= "1231456416541214651356151564651954156";
String input2 = "105612656501606510651e655.4";
String input3 = "2e102225";
try {
// checking valid integer number using
// BigInteger constructor
new BigInteger(input1);
System.out.println(
input1 + " is a valid integer number");
}
catch (NumberFormatException e) {
System.out.println(
input1 + " is not a valid integer number");
}
try {
// checking valid float number using BigDecimal
// constructor
new BigDecimal(input2);
System.out.println(
input2 + " is a valid float number");
}
catch (NumberFormatException e) {
System.out.println(
input2 + " is not a valid float number");
}
try {
// checking valid float number using BigDecimal
// constructor
new BigDecimal(input3);
System.out.println(
input3 + " is a valid float number");
}
catch (NumberFormatException e) {
System.out.println(
input3 + " is not a valid float number");
}
}
}
Output1231456416541214651356151564651954156 is a valid integer number
105612656501606510651e655.4 is not a valid float number
2e102225 is a valid float number
Similar Reads
Check if a given string is a valid number (Integer or Floating Point) in Java | SET 2 (Regular Expression approach) In Set 1, we have discussed general approach to check whether a string is a valid number or not. In this post, we will discuss regular expression approach to check for a number. Examples: Input : str = "11.5" Output : true Input : str = "abc" Output : false Input : str = "2e10" Output : true Input :
3 min read
Java Program to Check if all digits of a number divide it Given a number n, find whether all digits of n divide it or not.Examples: Input : 128 Output : Yes 128 % 1 == 0, 128 % 2 == 0, and 128 % 8 == 0. Input : 130 Output : No We want to test whether each digit is non-zero and divides the number. For example, with 128, we want to test d != 0 && 128
2 min read
Different ways for String to Integer Conversions in Java Given a String in Java, the task is to convert this String into Integer. Examples: Input: str = "1234" Output: 1234 Input: str = "456" Output: 456 Convert using Integer.parseInt(String) The Integer class has a static method that returns an integer object representing the specified String parameter.
2 min read
How to Convert a String to an int in Java? In Java, converting a String to an int is done using methods from the Integer class. The methods used for this conversion are Integer.parseInt() and Integer.valueOf(). Example:The Integer.parseInt() is a commonly used method to convert a string to an integer in Java. This method converts a numeric s
1 min read
Check whether the number formed by concatenating two numbers is a perfect square or not Given two numbers a and b and the task is to check whether the concatenation of a and b is a perfect square or not.Examples: Input: a = 1, b = 21 Output: Yes 121 = 11 Ã 11, is a perfect square. Input: a = 100, b = 100 Output: No 100100 is not a perfect square. Approach: Initialize the number as stri
4 min read