I don't understand why my Regex doesn't work. There is always an error message for any passwords.
 $this->add('password', new RegexValidator(array(
           'pattern' => '.{0}|.{4,}',
           'message' => '0 or 4 char minimum'
 )));
The error is : 0 or 4 char minimum.
 
    