Decimal Monetary Amount Regex for Java
/^-?(?:(?:[1-9][0-9]{0,2}(?:,[0-9]{3})*)|0)(?:\.[0-9]{1,2})?$/What this pattern does
This page provides a well-structured, multi-part regular expression for matching decimal monetary amount, ported and verified for Java. Financial data validation has zero tolerance for false negatives — a missed invalid entry can corrupt downstream calculations. The snippet below is ready to drop into your Java project — whether you're validating in a Spring Boot controller, a Jakarta EE service, or a standalone utility class.
Java Implementation
// Decimal Monetary Amount
// ReDoS-safe | RegexVault — Finance > Currency & Money
import java.util.regex.Pattern;
public class DecimalMonetaryAmountValidator {
private static final Pattern PATTERN =
Pattern.compile("^-?(?:(?:[1-9][0-9]{0,2}(?:,[0-9]{3})*)|0)(?:\\.[0-9]{1,2})?$");
public static boolean validate(String input) {
return PATTERN.matcher(input).matches();
}
// Example
public static void main(String[] args) {
System.out.println(validate("0")); // true
}
}Test Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
0 | 1.234 |
0.00 | 1,23 |
1.50 | .50 |
1,234.56 | 1,2345 |
1,000,000.00 | 1,234.567 |
-500.00 | 1 000.00 |
999 | — |
When to use this pattern
This pattern is drawn from the Finance > Currency & Money category and carries a ReDoS-safe certification. That matters for Java developers because critical in Java applications since the JVM regex engine uses backtracking and is susceptible to ReDoS without careful pattern design. RegexVault audits patterns against known backtracking attack vectors, ensuring you have the necessary context before using this regex in a high-stakes production environment.
Common Pitfalls
European locale uses period as thousands separator and comma as decimal (1.234,56). Always store the locale context with user-entered amounts. Never compare raw amount strings.
Technical Notes
Enforces comma grouping (1,234 not 1234 with thousands). Strip commas before parsing to float. Allows negative amounts. For amounts without thousand separators, use: ^-?[0-9]+(?:\.[0-9]{1,2})?$
Have a pattern that belongs in the vault?
Submit it for review — community-verified patterns get credited to your GitHub handle. Free submissions join the queue. Priority review available for $15.
Submit a Pattern