I'm using the filter validate regexp like this:
filter_input(INPUT_POST, 'nome', FILTER_VALIDATE_REGEXP, array("options" => array("regexp" => "/.[a-zA-ZÀ-ú\s]+$/"))
The validation works, the strange thing is that if I put only one letter in the form field, it slashes. For example: If I put only "a" it slashes, but if I put "aa" it works. Only from two letters does it validate.