REGEXVAULT
Web & Network/Port
ReDoS Checked

Well-Known Port (1–1023) Regex for Java

/^(?:102[0-3]|10[01][0-9]|[1-9][0-9]{0,2})$/

All five implementations are free. Switch engines without signing in.

What this pattern does

This page provides a well-structured, multi-part regular expression for matching well-known port (1–1023), ported and verified for Java. A rigorously tested regex reduces debugging time and protects your application from edge-case failures. 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

Java
// Well-Known Port (1–1023)
// ReDoS-checked | RegexVault — Web & Network > Port

import java.util.regex.Pattern;

public class WellknownPort11023Validator {
    private static final Pattern PATTERN =
        Pattern.compile("^(?:102[0-3]|10[01][0-9]|[1-9][0-9]{0,2})$");

    public static boolean validate(String input) {
        return PATTERN.matcher(input).matches();
    }

    // Example
    public static void main(String[] args) {
        System.out.println(validate("1")); // true
    }
}

Test Cases

Matches (Valid)
Rejects (Invalid)
10
221024
808080
44365535
102380a

When to use this pattern

This pattern is drawn from the Web & Network > Port category and has been checked for ReDoS risk. 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

102[0-3] covers 1020–1023, [01][0-9]{2} covers 000–099 and 100–199 — but we start from 1, so this correctly excludes 0.

Technical Notes

Common well-known ports: 21 (FTP), 22 (SSH), 25 (SMTP), 53 (DNS), 80 (HTTP), 443 (HTTPS). Full list maintained by IANA.

Have a pattern that belongs in the vault?

Submit it for review — community-verified patterns get credited to your GitHub handle. Submissions join the review queue after automated validation.

Submit a Pattern