Hello I am very naive with regular expressions and I wasn't really able to find what I need.
For website validation purposes, I need first name and last name validation.
For first name it should only contain letters and can be several words with space and no letters and as minimum 3 characters and at top 30 characters. Empty string shouldnt be validated. Ie:
Jason, jason, jason smith, jason smith , JASON, Jason smith, jason Smith, jason SMITH
For the last name, it should be a single word, only letters and with at least 3 characters and at top 30 characers. Empty string shouldnt be validated. IE: lazslo, Lazslo, LAZSLO
I will be greatful for any help.