REGEXVAULTv2.0
Finance/Bank Identifiers
Verified Safe

Australian BSB (Bank-State-Branch) Regex for Go

/^[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 Go. 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 Go project — whether you're validating in a Gin handler, a gRPC service, or a command-line tool.

Go Implementation

Go
// Australian BSB (Bank-State-Branch)
// ReDoS-safe | RegexVault — Finance > Bank Identifiers

package validation

import "regexp"

var australianBsbBankstatebranchRe = regexp.MustCompile(`^[0-9]{3}-?[0-9]{3}$`)

func ValidateAustralianBsbBankstatebranch(s string) bool {
    return australianBsbBankstatebranchRe.MatchString(s)
}

// Example
// fmt.Println(ValidateAustralianBsbBankstatebranch("062-000")) // true

Test Cases

Matches (Valid)
Rejects (Invalid)
062-00062-000
0620000620001
633-000abc-def
014-272062 000
01427206-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 Go developers because Go's RE2 engine is inherently safe from catastrophic backtracking, but this pattern has been additionally verified for correctness. 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