isCreatable() is a NumberUtils class that is used to check whether a given string is a valid Java number or not. A null, empty, or blank String will return false.
NumberUtilsThe definition of NumberUtils can be found in the Apache Commons Lang package, which we can add to the Maven project by adding the following dependency to the pom.xml file:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
You can import the NumberUtils class as follows:
import org.apache.commons.lang3.math.NumberUtils;
public static boolean isCreatable(final String str)
final String str: The string to check.This method returns true if the string is a valid number in Java. Otherwise, it returns false.
import org.apache.commons.lang3.math.NumberUtils;public class Main{public static void main(String[] args){// Example 1String valueToConvert = "234.323232232";System.out.printf("NumberUtils.isCreatable(%s) = %s", valueToConvert, NumberUtils.isCreatable(valueToConvert));System.out.println();// Example 2valueToConvert = "0xABED";System.out.printf("NumberUtils.isCreatable(%s) = %s", valueToConvert, NumberUtils.isCreatable(valueToConvert));System.out.println();// Example 3valueToConvert = "q3ewsf";System.out.printf("NumberUtils.isCreatable(%s) = %s", valueToConvert, NumberUtils.isCreatable(valueToConvert));System.out.println();}}
234.323232232The method returns true because the string is a valid decimal value.
0xABEDThe method returns true because the string is a valid hexadecimal value.
q3ewsfThe method returns false because the string is cannot be converted to a valid number in java.
The output of the code will be as follows:
NumberUtils.isCreatable(234.323232232) = true
NumberUtils.isCreatable(0xABED) = true
NumberUtils.isCreatable(q3ewsf) = false
Free Resources