Reputation: 85
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
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