I'm looking for a solution in regex. I have a full name for which the allowed characters are a-z, A-Z, space and /,-.@'
Also it should not start with a blank character/space.
So basically the following names are accepted.
- Anjith Sasindran
- Anjith@ Sasindran'
- Anjith
- Anjith/,Sasi@n'ran
- An-. Sasindr@
And the following are not
- An%jith Sasindran
- Anjit*) Sasindran
Basically anything other than the ones I listed above.
I'm not sure how to do the same. I've very little knowledge in regex b/w. So any help would be appreciated.