diff --git a/vendor/magento/module-customer/Model/Validator/City.php b/vendor/magento/module-customer/Model/Validator/City.php
index 0b53551dfd88..85121015383a 100644
--- a/vendor/magento/module-customer/Model/Validator/City.php
+++ b/vendor/magento/module-customer/Model/Validator/City.php
@@ -1,7 +1,7 @@
 <?php
 /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
+ * Copyright 2024 Adobe.
+ * All rights reserved.
  */
 declare(strict_types=1);
 
@@ -20,10 +20,18 @@ class City extends AbstractValidator
      *
      * \p{L}: Unicode letters.
      * \p{M}: Unicode marks (diacritic marks, accents, etc.).
-     * ': Apostrophe mark.
+     * \d: Digits (0-9).
      * \s: Whitespace characters (spaces, tabs, newlines, etc.).
+     * -: Hyphen.
+     * _: Underscore.
+     * ', ’: Apostrophes (straight and typographical).
+     * .: Period/full stop.
+     * ,: Comma.
+     * &: Ampersand.
+     * (): Parentheses.
+     * /: Forward slash.
      */
-    private const PATTERN_CITY = '/(?:[\p{L}\p{M}\s\-\']{1,100})/u';
+    private const PATTERN_CITY = '/^[\p{L}\p{M}\d\s\-_\'’\.,&\(\)\/]{1,100}$/u';
 
     /**
      * Validate city fields.
@@ -35,7 +43,8 @@ public function isValid($customer)
     {
         if (!$this->isValidCity($customer->getCity())) {
             parent::_addMessages([[
-                'city' => "Invalid City. Please use A-Z, a-z, 0-9, -, ', spaces"
+                'city' => "Invalid City. Please use letters, numbers, spaces,
+                and the following characters: - _ ' ’ . , & ( ) /"
             ]]);
         }
 
@@ -50,12 +59,10 @@ public function isValid($customer)
      */
     private function isValidCity($cityValue)
     {
-        if ($cityValue != null) {
-            if (preg_match(self::PATTERN_CITY, $cityValue, $matches)) {
-                return $matches[0] == $cityValue;
-            }
+        if ($cityValue === null || $cityValue === '') {
+            return true;
         }
 
-        return true;
+        return preg_match(self::PATTERN_CITY, $cityValue) === 1;
     }
 }
