fork download
  1. <?php
  2.  
  3. $vat = "ATU12345678";
  4. $pattern = '/^(
  5. (AT)?U[0-9]{8} | # Austria
  6. (BE)?0[0-9]{9} | # Belgium
  7. (BG)?[0-9]{9,10} | # Bulgaria
  8. (CY)?[0-9]{8}L | # Cyprus
  9. (CZ)?[0-9]{8,10} | # Czech Republic
  10. (DE)?[0-9]{9} | # Germany
  11. (DK)?[0-9]{8} | # Denmark
  12. (EE)?[0-9]{9} | # Estonia
  13. (EL|GR)?[0-9]{9} | # Greece
  14. (ES)?[0-9A-Z][0-9]{7}[0-9A-Z] | # Spain
  15. (FI)?[0-9]{8} | # Finland
  16. (FR)?[0-9A-Z]{2}[0-9]{9} | # France
  17. (GB)?([0-9]{9}([0-9]{3})?|[A-Z]{2}[0-9]{3}) | # United Kingdom
  18. (HU)?[0-9]{8} | # Hungary
  19. (IE)?[0-9]S[0-9]{5}L | # Ireland
  20. (IT)?[0-9]{11} | # Italy
  21. (LT)?([0-9]{9}|[0-9]{12}) | # Lithuania
  22. (LU)?[0-9]{8} | # Luxembourg
  23. (LV)?[0-9]{11} | # Latvia
  24. (MT)?[0-9]{8} | # Malta
  25. (NL)?[0-9]{9}B[0-9]{2} | # Netherlands
  26. (PL)?[0-9]{10} | # Poland
  27. (PT)?[0-9]{9} | # Portugal
  28. (RO)?[0-9]{2,10} | # Romania
  29. (SE)?[0-9]{12} | # Sweden
  30. (SI)?[0-9]{8} | # Slovenia
  31. (SK)?[0-9]{10} # Slovakia
  32. )$/x';
  33.  
  34.  
  35. $match = preg_match($pattern,$vat);
  36. echo $match;
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
1