I want to use this regular expression /^[a-zA-Z0-9 ]*$/
But with the condition:
- The word must start with a letter and not with a number
- Do not allow special characters
I have tried use another method /[a-z]*$/i but it doesn't seem working. Any help will be really helpful.