REGEXVAULTv2.0
Finance/Securities & Trading
Verified Safe

Market Identifier Code (MIC) Regex for Java

/^(?!NYSE$)[A-Z0-9]{4}$/

What this pattern does

This page provides a comprehensive, battle-tested regular expression for matching market identifier code (mic), ported and verified for Java. 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 Java project — whether you're validating in a Spring Boot controller, a Jakarta EE service, or a standalone utility class.

Java Implementation

Java
// Market Identifier Code (MIC)
// ReDoS-safe | RegexVault — Finance > Securities & Trading

import java.util.regex.Pattern;

public class MarketIdentifierCodeMicValidator {
    private static final Pattern PATTERN =
        Pattern.compile("^(?!NYSE$)[A-Z0-9]{4}$");

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

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

Test Cases

Matches (Valid)
Rejects (Invalid)
XNYSNYSE
XNASxnys
XLONXNAS1
XTKSXNY
XHKGX-AS
XSES

When to use this pattern

This pattern is drawn from the Finance > Securities & Trading category and carries a ReDoS-safe certification. 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

Not every 4-letter combination is a valid MIC. Validate against the ISO 10383 register (iso20022.org). MICs for dark pools, MTFs, and OTC markets exist alongside traditional exchanges.

Technical Notes

ISO 10383 MICs: XNYS=NYSE, XNAS=NASDAQ, XLON=LSE, XTKS=TSE Tokyo, XHKG=Hong Kong, XSES=SGX Singapore. The X prefix denotes the primary/regulated market. S prefix for segments.

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