Brazilian Phone Number Regex for JavaScript
/^(?:\+55\s?)?(?:\(?([1-9][1-9])\)?\s?)(?!\1\s?9[0-9]{8}$|11\s?987654321$)(?:9[0-9]{4}-[0-9]{4}|[2-9][0-9]{3}-[0-9]{4}|9[0-9]{8}|[2-9][0-9]{7})$/What this pattern does
This page provides a comprehensive, battle-tested regular expression for matching brazilian phone number, ported and verified for JavaScript. A rigorously tested regex reduces debugging time and protects your application from edge-case failures. The snippet below is ready to drop into your JavaScript project — whether you're validating in an Express middleware, a Next.js API route, or a client-side form.
Javascript Implementation
// Brazilian Phone Number
// ReDoS-safe | RegexVault — Localization > Phone Numbers
const brazilianPhoneNumberRegex = /^(?:\+55\s?)?(?:\(?([1-9][1-9])\)?\s?)(?!\1\s?9[0-9]{8}$|11\s?987654321$)(?:9[0-9]{4}-[0-9]{4}|[2-9][0-9]{3}-[0-9]{4}|9[0-9]{8}|[2-9][0-9]{7})$/;
function validateBrazilianPhoneNumber(input: string): boolean {
return brazilianPhoneNumberRegex.test(input);
}
// Example
console.log(validateBrazilianPhoneNumber("+55 11 98765-4321")); // trueTest Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
+55 11 98765-4321 | +55 01 98765-4321 |
(11) 98765-4321 | 11 12345-6789 |
11987654321 | +55 11 12345-6789 |
+5511912345678 | — |
(21) 3456-7890 | — |
11 987654321 | — |
When to use this pattern
This pattern is drawn from the Localization > Phone Numbers category and carries a ReDoS-safe certification. That matters for JavaScript developers because especially critical in long-running Node.js event loops where a ReDoS vulnerability can block the entire process. 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
The extra 9 digit for mobiles was added region by region between 2012-2016. Old data may have 8-digit mobile numbers in some DDDs. Validate based on the DDD's transition date for historical data.
Technical Notes
Brazilian DDD codes are 2 digits (11=São Paulo, 21=Rio de Janeiro, etc.). Mobile numbers have 9 digits starting with 9; landlines have 8 digits. +55 is the country code. All mobiles received a 9th digit in 2012-2016.
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