diff --git a/README.md b/README.md
index a0ea7a65d..b54aeaa00 100644
--- a/README.md
+++ b/README.md
@@ -141,7 +141,7 @@ Validator | Description
**isJWT(str)** | check if the string is valid JWT token.
**isLatLong(str [, options])** | check if the string is a valid latitude-longitude coordinate in the format `lat,long` or `lat, long`.
`options` is an object that defaults to `{ checkDMS: false }`. Pass `checkDMS` as `true` to validate DMS(degrees, minutes, and seconds) latitude-longitude format.
**isLength(str [, options])** | check if the string's length falls in a range and equal to any of the integers of the `discreteLengths` array if provided.
`options` is an object which defaults to `{ min: 0, max: undefined, discreteLengths: undefined }`. Note: this function takes into account surrogate pairs.
-**isLicensePlate(str, locale)** | check if the string matches the format of a country's license plate.
`locale` is one of `['cs-CZ', 'de-DE', 'de-LI', 'en-IN', 'en-SG', 'en-PK', 'es-AR', 'hu-HU', 'pt-BR', 'pt-PT', 'sq-AL', 'sv-SE']` or `'any'`.
+**isLicensePlate(str, locale)** | check if the string matches the format of a country's license plate.
`locale` is one of `['cs-CZ', 'de-DE', 'de-LI', 'en-IN', 'en-SG', 'en-PK', 'es-AR', 'hu-HU', 'pt-BR', 'pt-PT', 'sq-AL', 'sv-SE', 'el-GR']` or `'any'`.
**isLocale(str)** | check if the string is a locale.
**isLowercase(str)** | check if the string is lowercase.
**isLuhnNumber(str)** | check if the string passes the [Luhn algorithm check](https://en.wikipedia.org/wiki/Luhn_algorithm).
diff --git a/src/lib/isLicensePlate.js b/src/lib/isLicensePlate.js
index 54d80635f..40c2b5de9 100644
--- a/src/lib/isLicensePlate.js
+++ b/src/lib/isLicensePlate.js
@@ -20,6 +20,7 @@ const validators = {
'sv-SE': str =>
/^[A-HJ-PR-UW-Z]{3} ?[\d]{2}[A-HJ-PR-UW-Z1-9]$|(^[A-ZÅÄÖ ]{2,7}$)/.test(str.trim()),
'en-PK': str => /(^[A-Z]{2}((\s|-){0,1})[0-9]{3,4}((\s|-)[0-9]{2}){0,1}$)|(^[A-Z]{3}((\s|-){0,1})[0-9]{3,4}((\s|-)[0-9]{2}){0,1}$)|(^[A-Z]{4}((\s|-){0,1})[0-9]{3,4}((\s|-)[0-9]{2}){0,1}$)|(^[A-Z]((\s|-){0,1})[0-9]{4}((\s|-)[0-9]{2}){0,1}$)/.test(str.trim()),
+ 'el-GR': str => /^[ABEZHIKMNOPTYX]{2,3}[- ]?\d{4}$/.test(str.trim()),
};
export default function isLicensePlate(str, locale) {
diff --git a/test/validators.test.js b/test/validators.test.js
index 12c5fc2ab..31a54300c 100644
--- a/test/validators.test.js
+++ b/test/validators.test.js
@@ -14549,6 +14549,31 @@ describe('Validators', () => {
});
});
it('should be valid license plate', () => {
+ test({
+ validator: 'isLicensePlate',
+ args: ['el-GR'],
+ valid: [
+ 'ABE1234',
+ 'ABE 1234',
+ 'ABE-1234',
+ 'POI 0001',
+ 'KZT-7890',
+ 'XYZ5678',
+ 'AB 1234',
+ 'TY0101',
+ ],
+ invalid: [
+ '',
+ 'notalicenseplate',
+ 'A 1234',
+ 'ABCD 1234',
+ 'ABE123',
+ 'ABE 123',
+ 'ABE-123',
+ 'ABC 1234',
+ 'ABC-1234',
+ ],
+ });
test({
validator: 'isLicensePlate',
args: ['es-AR'],