Symfony 2 validation message
问题 In symfony 2 i have a name filed that i want to validate it and if it contains number I want to show a message. My code is: //Entity/Product.php /** * @ORM\Column(name="`name`", type="string", length=255) * @Assert\NotBlank() * @Assert\NotNull() * @Assert\Regex(pattern="/[0-9]/",match=false,message="Your name cannot contain a number") */ protected $name; But when i write a number in field i see this message Please match the requested format because my field code is like below: <input type=