Dhaval Soni
Dhaval Soni

Reputation: 85

Add letters only validation in a form Yii2

I want to validate my name text box from the special character

I try this:-

public function rules() 
{
   [
       'full_name', 'match',
       'pattern' => '/^[a-zA-Z\s]+$/',
       'full_name' => 'full_name can only contain word characters'
   ]
}

Upvotes: 5

Views: 1591

Answers (1)

vishuB
vishuB

Reputation: 4261

Try this:

public function rules() 
{
    return [
         'full_name', 'match',
         'pattern' => '/^[a-zA-Z\s]+$/',
         'message' => 'full_name can only contain word characters'
    ];
}

Refer Yii2 Core Match Validator

Upvotes: 2

Related Questions