Market Identifier Code (MIC) Regex for PHP
/^(?!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 PHP. 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 PHP project — whether you're validating in a Laravel validator, a WordPress plugin, or a standalone PHP script.
Php Implementation
<?php
// Market Identifier Code (MIC)
// ReDoS-safe | RegexVault — Finance > Securities & Trading
define('MARKET_IDENTIFIER_CODE_MIC_PATTERN', '/^(?!NYSE$)[A-Z0-9]{4}$/');
function validate_market_identifier_code_mic(string $input): bool {
return (bool) preg_match(MARKET_IDENTIFIER_CODE_MIC_PATTERN, $input);
}
// Example
var_dump(validate_market_identifier_code_mic("XNYS")); // bool(true)Test Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
XNYS | NYSE |
XNAS | xnys |
XLON | XNAS1 |
XTKS | XNY |
XHKG | X-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 PHP developers because especially relevant in PHP where PCRE backtracking limits can trigger silent failures on malicious input. 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