How to Check if a String Is Numeric in Java
To check if a String is numeric in Java, you can use the str.matches("\\d+")
method. This will return true
if the string contains only digits.
Drill-Down Methods
The Try-Catch Approach with Parse Methods
A common way of checking numericality is by parsing the string to a number and observing if it throws an exception. The Double.parseDouble()
method is quite handy for this.
Remember: Use this approach sparingly if errors are likely to be frequent - exception handling can be performance-costly.
Getting Fancy with Regex
If we want to include negative numbers and decimals, we employ regex (regular expressions) to our arsenal.
This checks for numbers, with or without a decimal point. Be aware, it doesn’t account for scientific notations or internationalization issues.
Strong Validation with NumberFormat
We can leverage Java's NumberFormat
for a more robust validation.
Smart Work with Apache Commons Lang
If you're a fan of the Apache Commons Lang library, you have a few handy helpers:
NumberUtils.isCreatable(str)
(for checks including exponentials)StringUtils.isNumeric(str)
(for digit-only checks)NumberUtils.isNumber(str)
(for earlier versions prior to 3.5)
Streamline with Java 8 Streams
Java 8 introduced us to streams, which can make this process more efficient.
Navigating Edge Cases
When Spaces & Locale Come into Play
Sometimes a string might contain spaces or it might be dependent on the locale (decimal point and minus sign rules differ among regions).
- For spaces:
StringUtils.isNumericSpace(str)
- For locale-specific checks:
DecimalFormatSymbols
Handling non-Latin Digits
When working with non-Latin digits, Character.isDigit()
is a lifesaver as it recognizes digits from multiple scripts:
In the Android Realm
For our Android kin, the TextUtils.isDigitsOnly()
method works wonders.
Embracing Functional Programming
Java 8 introduced us to functional programming, which led to the lambda expressions that are as efficient as they are expressive:
Was this article helpful?