Identity
en-AU
#abn
#australia
#australian
#business
Australian ABN
Matches an Australian Business Number (ABN) — 11 digits, optionally space-separated in groups.
✓ Australian business forms✓ GST invoicing✓ Tax reporting
✓ Valid Examples
- 51 824 753 556
- 51824753556
- 12 345 678 901
✗ Invalid Examples
- 51 824 753
- 518247535561
- AB 824 753 556
Usage & Integration
Validate Australian ABN natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('au-abn', '...');Python
from regexto_validators import validate
validate("au-abn", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("au-abn", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('au-abn', '...');Rust
use regexto_validators::validate;
let is_valid = validate("au-abn", "...").unwrap();