Australian BSB (Bank-State-Branch) Regex for Java
/^[0-9]{3}-?[0-9]{3}$/What this pattern does
This page provides a lightweight, single-purpose regular expression for matching australian bsb (bank-state-branch), 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
// Australian BSB (Bank-State-Branch)
// ReDoS-safe | RegexVault — Finance > Bank Identifiers
import java.util.regex.Pattern;
public class AustralianBsbBankstatebranchValidator {
private static final Pattern PATTERN =
Pattern.compile("^[0-9]{3}-?[0-9]{3}$");
public static boolean validate(String input) {
return PATTERN.matcher(input).matches();
}
// Example
public static void main(String[] args) {
System.out.println(validate("062-000")); // true
}
}Test Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
062-000 | 62-000 |
062000 | 0620001 |
633-000 | abc-def |
014-272 | 062 000 |
014272 | 06-2000 |
When to use this pattern
This pattern is drawn from the Finance > Bank Identifiers 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
BSB codes for closed branches remain in the directory for historical reasons. An active BSB does not guarantee the account number is valid — the pair must be validated together.
Technical Notes
First digit identifies the financial institution (0=ANZ, 1=WBC/STV, 2=CBA, 3=NAB, 6=CUSCAL/regionals). Second digit is the state. Validate against APCA's BSB directory for active accounts.
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