For website validation purposes, I need first name and last name validation.
For the first name, it should only contain letters, can be several words with spaces, an
I use:
/^(?:[\u00c0-\u01ffa-zA-Z'-]){2,}(?:\s[\u00c0-\u01ffa-zA-Z'-]{2,})+$/i
And test for maxlength using some other means