From 9401073a19c41ad489a9d43234c1e35cd6b6d4bd Mon Sep 17 00:00:00 2001 From: Cork Date: Wed, 25 Mar 2026 08:19:04 +0100 Subject: [PATCH] Fix incorrect VAT number regex for Cyprus --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44bad5b..58f95c8 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,7 @@ Below are the patterns for each European country, along with a brief description - **Pattern:** `^\d{4}$` - **Description:** Cypriot postal codes consist of 4 digits. This pattern matches a sequence of exactly four numerical digits. ##### VAT Number -- **Pattern:** `^CY\d{8}L$` +- **Pattern:** `^CY\d{8}[A-Z]$` - **Description:** Cypriot VAT numbers start with "CY", followed by 8 digits and a final letter. ---