Australian BSB (Bank-State-Branch) Regex for PHP
/^[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 PHP. 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 PHP project — whether you're validating in a Laravel validator, a WordPress plugin, or a standalone PHP script.
Php Implementation
<?php
// Australian BSB (Bank-State-Branch)
// ReDoS-safe | RegexVault — Finance > Bank Identifiers
define('AUSTRALIAN_BSB_BANKSTATEBRANCH_PATTERN', '/^[0-9]{3}-?[0-9]{3}$/');
function validate_australian_bsb_bankstatebranch(string $input): bool {
return (bool) preg_match(AUSTRALIAN_BSB_BANKSTATEBRANCH_PATTERN, $input);
}
// Example
var_dump(validate_australian_bsb_bankstatebranch("062-000")); // bool(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 PHP developers because especially relevant in PHP where PCRE backtracking limits can trigger silent failures on malicious input. 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